add 'id' to database setup
This commit is contained in:
@@ -261,6 +261,8 @@ components:
|
||||
InstallSetupDatabaseConfiguration:
|
||||
type: object
|
||||
properties:
|
||||
id:
|
||||
type: string
|
||||
server:
|
||||
type: string
|
||||
nullable: true
|
||||
|
||||
@@ -76,6 +76,7 @@ export interface components {
|
||||
errors?: { [key: string]: unknown };
|
||||
};
|
||||
InstallSetupDatabaseConfiguration: {
|
||||
id?: string;
|
||||
server?: string | null;
|
||||
password?: string | null;
|
||||
username?: string | null;
|
||||
|
||||
@@ -69,6 +69,7 @@ export interface InstallUserModel {
|
||||
}
|
||||
|
||||
export interface InstallSetupDatabaseConfiguration {
|
||||
id?: string;
|
||||
server?: string | null;
|
||||
password?: string | null;
|
||||
username?: string | null;
|
||||
|
||||
Reference in New Issue
Block a user