deploy: 89c4ca81bb
This commit is contained in:
parent
17e499e11f
commit
4b6a9fc0fc
|
@ -307,7 +307,8 @@ server admin: <a href="../usage/administration/admin_api">Admin API</a></p>
|
|||
"deactivated": 0,
|
||||
"shadow_banned": 0,
|
||||
"displayname": "<User One>",
|
||||
"avatar_url": null
|
||||
"avatar_url": null,
|
||||
"creation_ts": 1560432668000
|
||||
}, {
|
||||
"name": "<user_id2>",
|
||||
"is_guest": 0,
|
||||
|
@ -316,7 +317,8 @@ server admin: <a href="../usage/administration/admin_api">Admin API</a></p>
|
|||
"deactivated": 0,
|
||||
"shadow_banned": 0,
|
||||
"displayname": "<User Two>",
|
||||
"avatar_url": "<avatar_url>"
|
||||
"avatar_url": "<avatar_url>",
|
||||
"creation_ts": 1561550621000
|
||||
}
|
||||
],
|
||||
"next_token": "100",
|
||||
|
@ -369,6 +371,7 @@ which guarantees a stable ordering. Valid values are:</p>
|
|||
<li><code>shadow_banned</code> - Users are ordered by <code>shadow_banned</code> status.</li>
|
||||
<li><code>displayname</code> - Users are ordered alphabetically by <code>displayname</code>.</li>
|
||||
<li><code>avatar_url</code> - Users are ordered alphabetically by avatar URL.</li>
|
||||
<li><code>creation_ts</code> - Users are ordered by when the users was created in ms.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
|
@ -376,7 +379,7 @@ which guarantees a stable ordering. Valid values are:</p>
|
|||
Setting this value to <code>b</code> will reverse the above sort order. Defaults to <code>f</code>.</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>Caution. The database only has indexes on the columns <code>name</code> and <code>created_ts</code>.
|
||||
<p>Caution. The database only has indexes on the columns <code>name</code> and <code>creation_ts</code>.
|
||||
This means that if a different sort order is used (<code>is_guest</code>, <code>admin</code>,
|
||||
<code>user_type</code>, <code>deactivated</code>, <code>shadow_banned</code>, <code>avatar_url</code> or <code>displayname</code>),
|
||||
this can cause a large load on the database, especially for large environments.</p>
|
||||
|
@ -396,6 +399,7 @@ This allows user type specific behaviour. There are also types <code>support</co
|
|||
<li><code>shadow_banned</code> - bool - Status if that user has been marked as shadow banned.</li>
|
||||
<li><code>displayname</code> - string - The user's display name if they have set one.</li>
|
||||
<li><code>avatar_url</code> - string - The user's avatar URL if they have set one.</li>
|
||||
<li><code>creation_ts</code> - integer - The user's creation timestamp in ms.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
|
|
|
@ -9903,7 +9903,8 @@ server admin: <a href="admin_api/../usage/administration/admin_api">Admin API</a
|
|||
"deactivated": 0,
|
||||
"shadow_banned": 0,
|
||||
"displayname": "<User One>",
|
||||
"avatar_url": null
|
||||
"avatar_url": null,
|
||||
"creation_ts": 1560432668000
|
||||
}, {
|
||||
"name": "<user_id2>",
|
||||
"is_guest": 0,
|
||||
|
@ -9912,7 +9913,8 @@ server admin: <a href="admin_api/../usage/administration/admin_api">Admin API</a
|
|||
"deactivated": 0,
|
||||
"shadow_banned": 0,
|
||||
"displayname": "<User Two>",
|
||||
"avatar_url": "<avatar_url>"
|
||||
"avatar_url": "<avatar_url>",
|
||||
"creation_ts": 1561550621000
|
||||
}
|
||||
],
|
||||
"next_token": "100",
|
||||
|
@ -9965,6 +9967,7 @@ which guarantees a stable ordering. Valid values are:</p>
|
|||
<li><code>shadow_banned</code> - Users are ordered by <code>shadow_banned</code> status.</li>
|
||||
<li><code>displayname</code> - Users are ordered alphabetically by <code>displayname</code>.</li>
|
||||
<li><code>avatar_url</code> - Users are ordered alphabetically by avatar URL.</li>
|
||||
<li><code>creation_ts</code> - Users are ordered by when the users was created in ms.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
|
@ -9972,7 +9975,7 @@ which guarantees a stable ordering. Valid values are:</p>
|
|||
Setting this value to <code>b</code> will reverse the above sort order. Defaults to <code>f</code>.</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>Caution. The database only has indexes on the columns <code>name</code> and <code>created_ts</code>.
|
||||
<p>Caution. The database only has indexes on the columns <code>name</code> and <code>creation_ts</code>.
|
||||
This means that if a different sort order is used (<code>is_guest</code>, <code>admin</code>,
|
||||
<code>user_type</code>, <code>deactivated</code>, <code>shadow_banned</code>, <code>avatar_url</code> or <code>displayname</code>),
|
||||
this can cause a large load on the database, especially for large environments.</p>
|
||||
|
@ -9992,6 +9995,7 @@ This allows user type specific behaviour. There are also types <code>support</co
|
|||
<li><code>shadow_banned</code> - bool - Status if that user has been marked as shadow banned.</li>
|
||||
<li><code>displayname</code> - string - The user's display name if they have set one.</li>
|
||||
<li><code>avatar_url</code> - string - The user's avatar URL if they have set one.</li>
|
||||
<li><code>creation_ts</code> - integer - The user's creation timestamp in ms.</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue