mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Issue resource done
This commit is contained in:
@@ -14,3 +14,24 @@ export interface IFields {
|
||||
export interface IIssue {
|
||||
fields?: IFields;
|
||||
}
|
||||
|
||||
export interface INotify {
|
||||
subject?: string;
|
||||
textBody?: string;
|
||||
htmlBody?: string;
|
||||
to?: INotificationRecipients;
|
||||
restrict?: NotificationRecipientsRestrictions;
|
||||
}
|
||||
|
||||
export interface INotificationRecipients {
|
||||
reporter?: boolean;
|
||||
assignee?: boolean;
|
||||
watchers?: boolean;
|
||||
voters?: boolean;
|
||||
users?: IDataObject[];
|
||||
groups?: IDataObject[];
|
||||
}
|
||||
|
||||
export interface NotificationRecipientsRestrictions {
|
||||
groups?: IDataObject[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user