Promo Codes - Admin | Rugplay {#if !$USER_DATA || !$USER_DATA.isAdmin}

Access Denied

You don't have permission to access this page.

{:else}

Promo Codes

Create Draft a new promo code for users to redeem.
{currentExpirationLabel} {#each expirationOptions as option} {option.label} {/each}
{#if hasCreateResult} {#if createSuccess} {:else} {/if} {createMessage} {#if createSuccess && rewardAmount} (+${rewardAmount} reward) {/if} {/if}
Active Manage existing promo codes.
{#if isLoading} {#each Array(3) as _}
{/each} {:else if promoCodes.length === 0}

No codes created yet.

{:else} {#each promoCodes as promo (promo.id)}
{promo.code} {promo.isActive ? 'Active' : 'Inactive'}
${promo.rewardAmount}
{promo.usedCount || 0}{promo.maxUses ? `/${promo.maxUses}` : ''}
{formatDate(promo.createdAt)}
{#if promo.expiresAt}
Exp: {formatDate(promo.expiresAt)}
{:else}
No expiry
{/if}
{/each} {/if}
{/if}