> ## 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.

# Admin

> An Object which contains all the information for the admin page.

```js theme={null}
theme: SoftUI({
  admin: {
    pterodactyl: {
      enabled: Boolean,
      apiKey: String,
      panelLink: String,
      serverUUIDs: String[],
    },
  },
});
```

## Example Usage

```js theme={null}
theme: SoftUI({
  admin: {
    pterodactyl: {
      enabled: false,
      apiKey: "myPterodactylApiKey",
      panelLink: "https://panel.example.com",
      serverUUIDs: ["server-uuid-1", "server-uuid-2"],
    },
  },
});
```

## Image

<Frame>
  <img src="https://mintcdn.com/assistantscenter/e0fzjuWUPc5-sSJC/images/content/admin.jpg?fit=max&auto=format&n=e0fzjuWUPc5-sSJC&q=85&s=27a35e2a47433f5e475cc630a72826e2" width="2063" height="926" data-path="images/content/admin.jpg" />
</Frame>

## Props

<ResponseField name="pterodactyl" type="Object" required>
  <Expandable title="properties" defaultOpen>
    <ResponseField name="enabled" type="boolean" required>
      Indicate if the pterodactyl section should be enabled
    </ResponseField>

    <ResponseField name="apiKey" type="string">
      The API key for the pterodactyl panel
    </ResponseField>

    <ResponseField name="panelLink" type="string">
      Link to your pterodactyl panel
    </ResponseField>

    <ResponseField name="serverUUIDs" type="string[]">
      UUIDs of the servers you wish to control
    </ResponseField>
  </Expandable>
</ResponseField>
