#591 - source-controls

This commit is contained in:
Saeed Vaziry
2025-05-18 23:46:28 +02:00
parent 1ed5d7362b
commit 5a00d35eba
19 changed files with 791 additions and 362 deletions

View File

@ -33,6 +33,10 @@ export interface Configs {
server_providers_custom_fields: {
[provider: string]: string[];
};
source_control_providers: string[];
source_control_providers_custom_fields: {
[provider: string]: string[];
};
operating_systems: string[];
service_versions: {
[service: string]: string[];

11
resources/js/types/source-control.d.ts vendored Normal file
View File

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