diff --git a/templates/dashboard/support.html b/templates/dashboard/support.html index 64cfa9af..58a4eadf 100644 --- a/templates/dashboard/support.html +++ b/templates/dashboard/support.html @@ -72,10 +72,14 @@ }, methods: { generateRandomAlias: async function (event) { - let result = await fetch('/api/alias/random/new', {method: 'POST'}) + let result = await fetch('/api/alias/random/new', {method: 'POST'}); if (result.ok) { let data = await result.json(); this.ticket_email = data.alias; + } else if (result.status === 429 ){ + toastr.warning("You've created too many aliases recently. Wait a bit before creating more"); + } else { + toastr.warning("You can't create more aliases"); } } }