mirror of
https://github.com/caprover/caprover
synced 2026-05-04 02:30:30 +00:00
Changed http auth saving structure
This commit is contained in:
@@ -54,7 +54,6 @@ interface IAppDefinitionBase {
|
||||
hasPersistentData: boolean
|
||||
hasDefaultSubDomainSsl: boolean
|
||||
containerHttpPort?: number
|
||||
httpBasicAuth?: string
|
||||
captainDefinitionRelativeFilePath: string
|
||||
forceSsl: boolean
|
||||
nodeId?: string
|
||||
@@ -76,6 +75,11 @@ interface IAppDef extends IAppDefinitionBase {
|
||||
repoInfo: RepoInfo
|
||||
pushWebhookToken: string
|
||||
}
|
||||
httpAuth?: {
|
||||
user: string
|
||||
password?: string
|
||||
passwordHashed?: string
|
||||
}
|
||||
appName?: string
|
||||
isAppBuilding?: boolean
|
||||
}
|
||||
@@ -88,4 +92,9 @@ interface IAppDefSaved extends IAppDefinitionBase {
|
||||
pushWebhookToken: string
|
||||
}
|
||||
| undefined
|
||||
|
||||
httpAuth?: {
|
||||
user: string
|
||||
passwordHashed?: string
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user