Skip to content
Snippets Groups Projects
  1. Nov 18, 2020
  2. Nov 17, 2020
  3. Nov 16, 2020
  4. Nov 15, 2020
  5. Nov 05, 2020
  6. Nov 04, 2020
  7. Oct 29, 2020
    • Erik Johnston's avatar
      Fix unit tests (#8689) · ef2d6270
      Erik Johnston authored
      * Fix unit tests
      
      * Newsfile
      ef2d6270
    • Erik Johnston's avatar
      Add ability for access tokens to belong to one user but grant access to another user. (#8616) · f21e24ff
      Erik Johnston authored
      We do it this way round so that only the "owner" can delete the access token (i.e. `/logout/all` by the "owner" also deletes that token, but `/logout/all` by the "target user" doesn't).
      
      A future PR will add an API for creating such a token.
      
      When the target user and authenticated entity are different the `Processed request` log line will be logged with a: `{@admin:server as @bob:server} ...`. I'm not convinced by that format (especially since it adds spaces in there, making it harder to use `cut -d ' '` to chop off the start of log lines). Suggestions welcome.
      f21e24ff
  8. Oct 28, 2020
  9. Oct 27, 2020
  10. Oct 26, 2020
  11. Oct 20, 2020
  12. Oct 13, 2020
  13. Oct 09, 2020
    • Andrew Morgan's avatar
      Allow modules to create and send events into rooms (#8479) · 66ac4b1e
      Andrew Morgan authored
      This PR allows Synapse modules making use of the `ModuleApi` to create and send non-membership events into a room. This can useful to have modules send messages, or change power levels in a room etc. Note that they must send event through a user that's already in the room.
      
      The non-membership event limitation is currently arbitrary, as it's another chunk of work and not necessary at the moment.
      66ac4b1e
    • Patrick Cloke's avatar
      Remove the deprecated Handlers object (#8494) · c9c0ad5e
      Patrick Cloke authored
      All handlers now available via get_*_handler() methods on the HomeServer.
      c9c0ad5e
  14. Oct 06, 2020
  15. Oct 05, 2020
  16. Sep 30, 2020
    • Erik Johnston's avatar
      Make token serializing/deserializing async (#8427) · 7941372e
      Erik Johnston authored
      The idea is that in future tokens will encode a mapping of instance to position. However, we don't want to include the full instance name in the string representation, so instead we'll have a mapping between instance name and an immutable integer ID in the DB that we can use instead. We'll then do the lookup when we serialize/deserialize the token (we could alternatively pass around an `Instance` type that includes both the name and ID, but that turns out to be a lot more invasive).
      7941372e
  17. Sep 29, 2020
  18. Sep 22, 2020
  19. Sep 18, 2020
Loading