diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-03 17:01:12 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-03 17:02:02 +0200 |
commit | 5f7cdbe0b8c6f62ea4092a859f16af1b88078d4a (patch) | |
tree | 954fc4c11fd9af1f8af02686d3823382fda32250 /webclient/settings | |
parent | Added /kick $user_id (diff) | |
download | synapse-5f7cdbe0b8c6f62ea4092a859f16af1b88078d4a.tar.xz |
List commands and their usage in the settings page
Diffstat (limited to 'webclient/settings')
-rw-r--r-- | webclient/settings/settings.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/webclient/settings/settings.html b/webclient/settings/settings.html index 03927838d2..49dc603540 100644 --- a/webclient/settings/settings.html +++ b/webclient/settings/settings.html @@ -74,6 +74,21 @@ <div>Access token: {{ config.access_token }} </div> </div> <br/> + + <h3>Commands</h3> + <div class="section"> + The following commands are available in the room chat: + <ul> + <li>/nick <display_name>: change your display name</li> + <li>/me <action>: send the action you are doing. /me will be replaced by your display name</li> + <li>/kick <user_id>: kick the user</li> + <li>/ban <user_id> [<reason>]: ban the user</li> + <li>/unban <user_id>: unban the user</li> + <li>/op <user_id> <power_level>: set user power level</li> + <li>/deop <user_id>: reset user power level to the room default value</li> + </ul> + </div> + <br/> {{ feedback }} |