mirror of
https://github.com/element-hq/synapse.git
synced 2026-07-27 23:11:18 +00:00
Docstring for ProfileUpdateAction
This commit is contained in:
@@ -411,9 +411,22 @@ class ProfileFields:
|
||||
|
||||
|
||||
class ProfileUpdateAction(enum.Enum):
|
||||
"""
|
||||
Enum representing the action of a row in the profile updates stream tables.
|
||||
"""
|
||||
|
||||
JOINED_ROOM = "joined_room"
|
||||
"""
|
||||
User joined a room.
|
||||
"""
|
||||
LEFT_ROOM = "left_room"
|
||||
"""
|
||||
User left a room.
|
||||
"""
|
||||
UPDATE = "update"
|
||||
"""
|
||||
User updated a profile field.
|
||||
"""
|
||||
|
||||
|
||||
class StickyEventField(TypedDict):
|
||||
|
||||
Reference in New Issue
Block a user