Skip to content
This repository has been archived by the owner on Mar 17, 2023. It is now read-only.

[FIX] Fix REST /me endpoint #728

Merged
merged 3 commits into from
May 21, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 31 additions & 25 deletions developer-guides/rest-api/authentication/me/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,31 +36,37 @@ curl -H "X-Auth-Token: 9HqLlyZOugoStsXCUfD_0YdwnNnunAJF8V47U3QHXSq" \
"admin"
],
"settings": {
"preferences": {
"newRoomNotification": "door",
"newMessageNotification": "chime",
"useEmojis": true,
"convertAsciiEmoji": true,
"saveMobileBandwidth": true,
"collapseMediaByDefault": false,
"muteFocusedConversations": true,
"hideUsernames": false,
"hideFlexTab": false,
"hideAvatars": false,
"sendOnEnter": "normal",
"autoImageLoad": true,
"emailNotificationMode": "all",
"desktopNotificationDuration": 0,
"desktopNotifications": "default",
"mobileNotifications": "default",
"unreadAlert": true,
"notificationsSoundVolume": 100,
"roomCounterSidebar": false,
"highlights": [],
"hideRoles": false,
"enableAutoAway": false,
"idleTimeLimit": 300000
}
"preferences": {
"enableAutoAway": false,
"idleTimeoutLimit": 300,
"desktopNotificationDuration": 0,
"audioNotifications": "mentions",
"desktopNotifications": "mentions",
"mobileNotifications": "mentions",
"unreadAlert": true,
"useEmojis": true,
"convertAsciiEmoji": true,
"autoImageLoad": true,
"saveMobileBandwidth": true,
"collapseMediaByDefault": false,
"hideUsernames": false,
"hideRoles": false,
"hideFlexTab": false,
"hideAvatars": false,
"roomsListExhibitionMode": "category",
"sidebarViewMode": "medium",
"sidebarHideAvatar": false,
"sidebarShowUnread": false,
"sidebarShowFavorites": true,
"sendOnEnter": "normal",
"messageViewMode": 0,
"emailNotificationMode": "all",
"roomCounterSidebar": false,
"newRoomNotification": "door",
"newMessageNotification": "chime",
"muteFocusedConversations": true,
"notificationsSoundVolume": 100
}
},
"success": true
}
Expand Down