# Management (server)

An operator using the server console has the permissions to:

* Create new users
* Kick existing users
* Set user roles
* Broadcast messages to all users

New users can be given either the `admin` or `player` role. These roles dictate which server endpoints users are allowed to access. For example, an admin can install new builders and delete player resources, but a normal player cannot.

Here is a list of endpoints restricted to only administrators:

```clike
// Install and uninstall builders
"/Install"
"/Uninstall"
// Open and close HTTP(S) ports 
"/HttpOpen"
"/HttpsOpen"

"/HttpClose"
"/HttpsClose"
// Open and close raw TCP ports
"/TcpOpen"
"/TcpClose"
```

> *Warning: since administrators can manage all resources, it is important that the server console player chooses them wisely.*
