3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-25 18:25:03 +00:00

Visual changes (paragraphs)

This commit is contained in:
srqc 2023-01-20 20:26:20 -05:00 committed by GitHub
parent 801cd2630b
commit 3f8bebc928
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,27 +8,12 @@ In all examples below, `@Bot` refers to a user mention of the bot user. Make sur
In the command parameters, `<this>` refers to a required parameter (don't include the `< >` symbols) and `[this]` refers to an optional parameter (don't include the `[ ]` symbols). `<this...>` refers to being able to list multiple values, e.g. `value1 value2 value3`. In the command parameters, `<this>` refers to a required parameter (don't include the `< >` symbols) and `[this]` refers to an optional parameter (don't include the `[ ]` symbols). `<this...>` refers to being able to list multiple values, e.g. `value1 value2 value3`.
## Allow a server to invite the bot ## Bot Access
Run the following command:
```
@Bot allow_server <serverId> [userId]
```
When specifying a user ID, that user will be given "Bot manager" level access to the server's dashboard, allowing them to manage access for other users. When specifying a user ID, that user will be given "Bot manager" level access to the server's dashboard, allowing them to manage access for other users.
## Disallow a server - Allow a server to invite the bot: `@Bot allow_server <serverId> [userId]`
Run the following command: - Disallow a server: `@Bot disallow_server <serverId>`
```
@Bot disallow_server <serverId>
```
## Grant access to a server's dashboard ## Dashboard Access
Run the following command: - Grant access to a server's dashboard: `@Bot add_dashboard_user <serverId> <userId...>`
``` - Remove access to a server's dashboard: `@Bot remove_dashboard_user <serverId> <userId...>`
@Bot add_dashboard_user <serverId> <userId...>
```
## Remove access to a server's dashboard
Run the following command:
```
@Bot remove_dashboard_user <serverId> <userId...>
```