add 'id' to database setup

This commit is contained in:
Jacob Overgaard
2022-06-30 13:15:15 +02:00
parent 5dcf48adfb
commit ff9e24e7d1
3 changed files with 4 additions and 0 deletions

View File

@@ -261,6 +261,8 @@ components:
InstallSetupDatabaseConfiguration:
type: object
properties:
id:
type: string
server:
type: string
nullable: true

View File

@@ -76,6 +76,7 @@ export interface components {
errors?: { [key: string]: unknown };
};
InstallSetupDatabaseConfiguration: {
id?: string;
server?: string | null;
password?: string | null;
username?: string | null;

View File

@@ -69,6 +69,7 @@ export interface InstallUserModel {
}
export interface InstallSetupDatabaseConfiguration {
id?: string;
server?: string | null;
password?: string | null;
username?: string | null;