diff --git a/backend/app/api/static/docs/docs.go b/backend/app/api/static/docs/docs.go index 3f7c37d..e24f140 100644 --- a/backend/app/api/static/docs/docs.go +++ b/backend/app/api/static/docs/docs.go @@ -2425,6 +2425,9 @@ const docTemplate = `{ "v1.ApiSummary": { "type": "object", "properties": { + "allowRegistration": { + "type": "boolean" + }, "build": { "$ref": "#/definitions/v1.Build" }, diff --git a/backend/app/api/static/docs/swagger.json b/backend/app/api/static/docs/swagger.json index 3c81456..6319ff9 100644 --- a/backend/app/api/static/docs/swagger.json +++ b/backend/app/api/static/docs/swagger.json @@ -2417,6 +2417,9 @@ "v1.ApiSummary": { "type": "object", "properties": { + "allowRegistration": { + "type": "boolean" + }, "build": { "$ref": "#/definitions/v1.Build" }, diff --git a/backend/app/api/static/docs/swagger.yaml b/backend/app/api/static/docs/swagger.yaml index 4d7db79..301dd3d 100644 --- a/backend/app/api/static/docs/swagger.yaml +++ b/backend/app/api/static/docs/swagger.yaml @@ -564,6 +564,8 @@ definitions: type: object v1.ApiSummary: properties: + allowRegistration: + type: boolean build: $ref: '#/definitions/v1.Build' demo: diff --git a/frontend/lib/api/types/data-contracts.ts b/frontend/lib/api/types/data-contracts.ts index 9ed4a8d..a4a0d90 100644 --- a/frontend/lib/api/types/data-contracts.ts +++ b/frontend/lib/api/types/data-contracts.ts @@ -335,6 +335,7 @@ export interface ActionAmountResult { } export interface ApiSummary { + allowRegistration: boolean; build: Build; demo: boolean; health: boolean;