1. 24 5月, 2017 1 次提交
  2. 23 5月, 2017 1 次提交
  3. 22 5月, 2017 2 次提交
    • 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
    • K
      0325459e
  4. 19 5月, 2017 1 次提交
  5. 18 5月, 2017 1 次提交
  6. 06 5月, 2017 1 次提交
  7. 05 5月, 2017 1 次提交
  8. 21 4月, 2017 2 次提交
  9. 12 4月, 2017 1 次提交
  10. 11 4月, 2017 1 次提交
  11. 10 4月, 2017 1 次提交
  12. 07 4月, 2017 1 次提交
  13. 05 4月, 2017 1 次提交
  14. 30 3月, 2017 1 次提交
  15. 29 3月, 2017 2 次提交
  16. 23 3月, 2017 1 次提交
    • K
      Make a dendrite-sync-server binary (#48) · e347aa05
      Kegsay 提交于
      Currently the HTTP handlers are attached to an API mux which is created inside
      Setup(). In the future, we'll want to split this out so a single mux can have
      both sync and clientapi handlers attached to it.
      e347aa05
  17. 22 3月, 2017 1 次提交
  18. 18 3月, 2017 1 次提交
  19. 17 3月, 2017 1 次提交
  20. 15 3月, 2017 2 次提交
  21. 13 3月, 2017 1 次提交
  22. 11 3月, 2017 3 次提交
  23. 10 3月, 2017 1 次提交
  24. 09 3月, 2017 1 次提交
  25. 08 3月, 2017 1 次提交
  26. 07 3月, 2017 1 次提交
  27. 24 2月, 2017 1 次提交
  28. 21 2月, 2017 2 次提交
    • K
      Add error package and some Matrix errors (#13) · 966d3b95
      Kegsay 提交于
      Terse function names are used to make usage not stutter. For example:
      
      ```go
      err := error.Forbidden("you shall not pass")
      ```
      
      At the moment they are all the same fundamental `MatrixError` type. This will
      be bad if we ever want to `switch` based on the kind of error. I'm hoping we
      won't ever need to introspect into errors like this: ideally these errors would
      be created purely for immediately being returned in an HTTP response.
      
      `MatrixError` implements the `error` interface.
      966d3b95
    • K
      Implement logging to file via dugong (#12) · 5c34caa1
      Kegsay 提交于
      5c34caa1
  29. 20 2月, 2017 1 次提交
  30. 04 2月, 2017 3 次提交