> ## Documentation Index
> Fetch the complete documentation index at: https://docs.assistantscenter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Support Server

> Create an endpoint containing a link with an invitation to your Discord Support server.

```js theme={null}
new DBD.Dashboard({
  supportServer: {
    slash: String,
    inviteUrl: String,
  },
});
```

## Example Usage

```javascript theme={null}
new DBD.Dashboard({
  supportServer: {
    slash: "/support",
    inviteUrl: "https://discord.gg/invite",
  },
});
```

## Props

<ParamField path="slash" type="string" required>
  The url for the invite endpoint
</ParamField>

<ParamField path="inviteUrl" type="string" required>
  The invite url of the endpoint.
</ParamField>
