Skip to content

Commit 037d90b

Browse files
committed
Update schemas
1 parent 4863920 commit 037d90b

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

docs/config.schema.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2559,9 +2559,8 @@
25592559
]
25602560
},
25612561
"plan_management_iframe_uri": {
2562-
"description": "Experimental feature to show a plan management tab and iframe",
2563-
"type": "string",
2564-
"format": "uri"
2562+
"description": "Experimental feature to show a plan management tab and iframe. This value is passed through \"as is\" to the client without any validation.",
2563+
"type": "string"
25652564
}
25662565
}
25672566
},

frontend/schema.graphql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1757,7 +1757,7 @@ type SiteConfig implements Node {
17571757
Whether users can log in with their email address.
17581758
"""
17591759
loginWithEmailAllowed: Boolean!
1760-
planManagementIframeUri: Url
1760+
planManagementIframeUri: String
17611761
"""
17621762
The ID of the site configuration.
17631763
"""

frontend/src/gql/graphql.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1296,7 +1296,7 @@ export type SiteConfig = Node & {
12961296
passwordLoginEnabled: Scalars['Boolean']['output'];
12971297
/** Whether passwords are enabled and users can register using a password. */
12981298
passwordRegistrationEnabled: Scalars['Boolean']['output'];
1299-
planManagementIframeUri?: Maybe<Scalars['Url']['output']>;
1299+
planManagementIframeUri?: Maybe<Scalars['String']['output']>;
13001300
/** The URL to the privacy policy. */
13011301
policyUri?: Maybe<Scalars['Url']['output']>;
13021302
/** The server name of the homeserver. */

0 commit comments

Comments
 (0)