diff options
Diffstat (limited to 'services/domain/messages.go')
| -rw-r--r-- | services/domain/messages.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/services/domain/messages.go b/services/domain/messages.go index 70be560..583fab0 100644 --- a/services/domain/messages.go +++ b/services/domain/messages.go @@ -3,9 +3,12 @@ package domain const ( DomainAlreadyExists = "A domain with this name already exists under this TLD." DomainCreationFailed = "Failed to create domain." + DomainDeletionFailed = "Failed to delete domain." + DomainHasMailboxes = "Cannot delete a domain that has mailboxes. Remove all mailboxes first." DomainNameInvalid = "Domain name must contain only lowercase letters, numbers, and hyphens." DomainNameRequired = "Domain name is required." DomainNotFound = "Domain not found." + DomainUpdateFailed = "Failed to update domain." DomainTLDRequired = "A TLD must be selected for the domain." TLDAlreadyExists = "A TLD with this name already exists." TLDCreationFailed = "Failed to create TLD." |
