1 files changed, 11 insertions, 1 deletions
diff --git a/webclient/settings/settings.html b/webclient/settings/settings.html
index 0af137d0a7..094c846f8b 100644
--- a/webclient/settings/settings.html
+++ b/webclient/settings/settings.html
@@ -52,6 +52,15 @@
<div class="section" ng-switch="settings.notifications">
<div ng-switch-when="granted">
Notifications are enabled.
+ <div class="section">
+ <h4>Specific words to alert on:</h4>
+ <p>Leave blank to alert on all messages. Your username & display name always alerts.</p>
+ <input size=40 name="bingWords" ng-model="settings.bingWords" ng-list placeholder="Enter words separated with , (supports regex)"
+ ng-blur="saveBingWords()"/>
+ <ul>
+ <li ng-repeat="word in settings.bingWords">{{word}}</li>
+ </ul>
+ </div>
</div>
<div ng-switch-when="denied">
You have denied permission for notifications.<br/>
@@ -81,7 +90,8 @@
<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>/join <room_alias>: join a room</li>
+ <li>/kick <user_id> [<reason>]: 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>
|