[deploy] add ticket sla, pipeline, automations, kb
All checks were successful
Deploy Discord Bot / deploy (push) Successful in 36s
All checks were successful
Deploy Discord Bot / deploy (push) Successful in 36s
This commit is contained in:
@@ -21,11 +21,18 @@ export interface TicketRecord {
|
||||
guildId: string;
|
||||
topic?: string;
|
||||
priority?: 'low' | 'normal' | 'high';
|
||||
status: 'open' | 'in-progress' | 'closed';
|
||||
status: TicketStatus;
|
||||
claimedBy?: string;
|
||||
transcript?: string;
|
||||
firstClaimAt?: Date | null;
|
||||
firstResponseAt?: Date | null;
|
||||
kbSuggestionSentAt?: Date | null;
|
||||
createdAt?: Date;
|
||||
updatedAt?: Date;
|
||||
}
|
||||
|
||||
export type TicketStatus = 'neu' | 'in_bearbeitung' | 'warten_auf_user' | 'erledigt' | 'open' | 'in-progress' | 'closed';
|
||||
|
||||
export interface ForumUser {
|
||||
discordId: string;
|
||||
forumUserId: string;
|
||||
|
||||
Reference in New Issue
Block a user