summaryrefslogtreecommitdiff
path: root/shrine/messages/ticket.go
blob: aa9021e18cc1183348571e5b812f8f43fe69cf47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package messages

const (
	TicketNotFound          = "Ticket not found."
	TicketClosed            = "This ticket is closed."
	InvalidCategory         = "Invalid category."
	InvalidPriority         = "Invalid priority."
	InvalidStatus           = "Invalid status."
	SubjectRequired         = "Subject must be between 1 and 200 characters."
	CategoryNameRequired    = "Category name is required."
	CategoryNotFound        = "Category not found."
	AssigneeNotFound        = "Assignee not found."
	FailedCreateTicket      = "Failed to create ticket."
	FailedSendReply         = "Failed to send reply."
	FailedUpdateTicket      = "Failed to update ticket."
	FailedCreateCategory    = "Failed to create category."
	FailedUpdateCategory    = "Failed to update category."
	FailedDeleteCategory    = "Failed to delete category."
)