Skip to content

Commit

Permalink
Fix schema
Browse files Browse the repository at this point in the history
  • Loading branch information
bkis committed Jan 19, 2024
1 parent bd9abfb commit 59960cd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions Tekst-API/openapi.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openapi": "3.1.0",
"info": {
"title": "Tekst",
"title": "Tekst-Dev",
"description": "An online text research platform",
"termsOfService": "None",
"contact": {},
Expand All @@ -13,7 +13,7 @@
},
"servers": [
{
"url": "http://127.0.0.1:8000/api"
"url": "http://127.0.0.1/api"
}
],
"paths": {
Expand Down Expand Up @@ -6631,7 +6631,7 @@
"usersActiveByDefault": false,
"enableCookieAuth": true,
"enableJwtAuth": true,
"authCookieLifetime": 43200
"authCookieLifetime": 10800
}
},
"systemSegments": {
Expand Down Expand Up @@ -6727,7 +6727,7 @@
"authCookieLifetime": {
"type": "integer",
"title": "Authcookielifetime",
"default": 43200
"default": 10800
}
},
"type": "object",
Expand All @@ -6746,7 +6746,7 @@
"minLength": 1,
"title": "Infoplatformname",
"description": "Name of the platform",
"default": "Tekst"
"default": "Tekst-Dev"
},
"infoSubtitle": {
"items": {
Expand Down Expand Up @@ -6915,7 +6915,7 @@
"minLength": 1,
"title": "Infoplatformname",
"description": "Name of the platform",
"default": "Tekst"
"default": "Tekst-Dev"
},
"infoSubtitle": {
"items": {
Expand Down
8 changes: 4 additions & 4 deletions Tekst-Web/src/api/schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1571,7 +1571,7 @@ export interface components {
* "usersActiveByDefault": false,
* "enableCookieAuth": true,
* "enableJwtAuth": true,
* "authCookieLifetime": 43200
* "authCookieLifetime": 10800
* }
*/
security?: components['schemas']['PlatformSecurityInfo'];
Expand Down Expand Up @@ -1621,7 +1621,7 @@ export interface components {
enableJwtAuth?: boolean;
/**
* Authcookielifetime
* @default 43200
* @default 10800
*/
authCookieLifetime?: number;
};
Expand All @@ -1635,7 +1635,7 @@ export interface components {
/**
* Infoplatformname
* @description Name of the platform
* @default Tekst
* @default Tekst-Dev
*/
infoPlatformName?: string;
/**
Expand Down Expand Up @@ -1731,7 +1731,7 @@ export interface components {
/**
* Infoplatformname
* @description Name of the platform
* @default Tekst
* @default Tekst-Dev
*/
infoPlatformName?: string;
/**
Expand Down

0 comments on commit 59960cd

Please sign in to comment.