1. 14 11月, 2017 1 次提交
  2. 18 10月, 2017 1 次提交
  3. 15 10月, 2017 1 次提交
  4. 10 10月, 2017 1 次提交
  5. 20 9月, 2017 1 次提交
  6. 18 9月, 2017 1 次提交
  7. 07 8月, 2017 1 次提交
    • M
      Add prefixes to namespace the SQL tables. (#177) · 4d1504ee
      Mark Haines 提交于
      * Add prefixes to namespace the SQL tables.
      
      This means that multiple components can share a single database schema
      without colliding with each other.
      
      Once this lands it will be possible to run a single monolithic dendrite
      against a single postgresql schema.
      
      Hopefully this will make trivial deployments and development easier.
      
      * Comment
      4d1504ee
  8. 18 7月, 2017 1 次提交
  9. 11 7月, 2017 1 次提交
  10. 31 5月, 2017 1 次提交
  11. 26 5月, 2017 1 次提交
  12. 25 5月, 2017 1 次提交
  13. 24 5月, 2017 1 次提交
  14. 22 5月, 2017 1 次提交
    • K
      Rename packages under /auth (#114) · d63a1ddc
      Kegsay 提交于
      Previously, all database stuff was under the helpfully named
      package 'storage'. However, this convention is used throughout all
      of dendrite, which will clash the moment we want to add auth to all
      the CS API endpoints. To prevent the package name clash, add
      sub-directories which represent what is being stored so the final
      usage ends up being:
      
      ```
      func doThing(db *storage.SyncServerDatabase, authDB *accounts.Database)
      {
          // ...
      }
      ```
      d63a1ddc