-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add archived support through telepath #1206
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1206 +/- ##
==========================================
+ Coverage 93.51% 93.51% +<.01%
==========================================
Files 124 124
Lines 16561 16569 +8
==========================================
+ Hits 15487 15495 +8
Misses 1074 1074
Continue to review full report at Codecov.
|
CHANGELOG.rst
Outdated
@@ -9,7 +9,8 @@ v0.1.3 - TBD | |||
Features and Enhancements | |||
------------------------- | |||
|
|||
- Add new features (`#XXX <https://github.com/vertexproject/synapse/pull/XXX>`_) | |||
- Add the ability to delete a role via HTTP API, as well as being able to mark a user as being archived. Archiving a user will also lock as user. (`#1205 <https://github.com/vertexproject/synapse/pull/1205>`_) | |||
- Add support to archiving a user to the CellApi for use via Telepath. (`#1206 <https://github.com/vertexproject/synapse/pull/1206>`_) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
support for archiving a user?
CHANGELOG.rst
Outdated
@@ -9,7 +9,8 @@ v0.1.3 - TBD | |||
Features and Enhancements | |||
------------------------- | |||
|
|||
- Add new features (`#XXX <https://github.com/vertexproject/synapse/pull/XXX>`_) | |||
- Add the ability to delete a role via HTTP API, as well as being able to mark a user as being archived. Archiving a user will also lock as user. (`#1205 <https://github.com/vertexproject/synapse/pull/1205>`_) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lock a user
@@ -842,6 +842,7 @@ def pack(self): | |||
'admin': self.admin, | |||
'email': self.info.get('email'), | |||
'locked': self.locked, | |||
'archived': self.info.get('archived'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shit. good catch.
No description provided.