#591 - storage-providers

This commit is contained in:
Saeed Vaziry
2025-05-19 00:13:17 +02:00
parent 5a00d35eba
commit 563b9c5909
15 changed files with 517 additions and 39 deletions

View File

@ -37,6 +37,10 @@ export interface Configs {
source_control_providers_custom_fields: {
[provider: string]: string[];
};
storage_providers: string[];
storage_providers_custom_fields: {
[provider: string]: string[];
};
operating_systems: string[];
service_versions: {
[service: string]: string[];

View File

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