← Dashboard

Notification Preferences

Choose how you want to receive important notifications like password resets, security alerts, and account updates.

{#if loading}

Loading...

{:else} {#if error}
{error}
{/if} {#if success}
{success}
{/if}

Preferred Channel

Select your preferred way to receive notifications. You must configure a channel before you can select it.

{#each channels as channel} {/each}

Channel Configuration

Primary

Your email is managed in Account Settings

{#if discordId} {#if discordVerified} Verified {:else} Not verified {/if} {/if}

Your Discord user ID (not username). Enable Developer Mode in Discord to copy it.

{#if verifyingChannel === 'discord'}
{/if}
{#if telegramUsername} {#if telegramVerified} Verified {:else} Not verified {/if} {/if}

Your Telegram username without the @ symbol

{#if verifyingChannel === 'telegram'}
{/if}
{#if signalNumber} {#if signalVerified} Verified {:else} Not verified {/if} {/if}

Your Signal phone number with country code

{#if verifyingChannel === 'signal'}
{/if}
{#if verificationError}
{verificationError}
{/if} {#if verificationSuccess}
{verificationSuccess}
{/if}

Notification History

View recent notifications sent to your account.

{#if !showHistory} {:else} {#if historyError}
{historyError}
{:else if notifications.length === 0}

No notifications found.

{:else}
{#each notifications as notification}
{notification.notificationType} {notification.channel} {notification.status}
{#if notification.subject}
{notification.subject}
{/if}
{notification.body}
{formatDate(notification.createdAt)}
{/each}
{/if} {/if}
{/if}