#591 - notification-channels

This commit is contained in:
Saeed Vaziry
2025-05-19 20:05:38 +02:00
parent 563b9c5909
commit cdc012c270
16 changed files with 611 additions and 100 deletions

View File

@ -41,6 +41,10 @@ export interface Configs {
storage_providers_custom_fields: {
[provider: string]: string[];
};
notification_channels_providers: string[];
notification_channels_providers_custom_fields: {
[provider: string]: string[];
};
operating_systems: string[];
service_versions: {
[service: string]: string[];

View File

@ -0,0 +1,11 @@
export interface NotificationChannel {
id: number;
project_id?: number;
global: boolean;
name: string;
provider: string;
created_at: string;
updated_at: string;
[key: string]: unknown;
}