From cc681c336238723ff1069e3267d925d528cc3284 Mon Sep 17 00:00:00 2001 From: JeethJJ Date: Thu, 17 Oct 2024 20:23:45 +0530 Subject: [PATCH 1/8] Add new excludeSystemPortals query param. --- .../apis/organization-apis/restapis/application.yaml | 12 ++++++++++++ .../next/docs/apis/restapis/application.yaml | 12 ++++++++++++ 2 files changed, 24 insertions(+) diff --git a/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml b/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml index 0ef0d3544a..c222feebd4 100644 --- a/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml +++ b/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml @@ -24,6 +24,7 @@ paths: - $ref: '#/components/parameters/sortOrderQueryParam' - $ref: '#/components/parameters/sortByQueryParam' - $ref: '#/components/parameters/attributesQueryParam' + - $ref: '#/components/parameters/excludeSystemPortalsQueryParam' responses: '200': description: OK @@ -345,6 +346,17 @@ components: /applications?attributes=advancedConfigurations,templateId,clientId,issuer schema: type: string + excludeSystemPortalsQueryParam: + in: query + name: excludeSystemPortals + required: false + description: | + Specifies whether to include or exclude system portals in the response. + Default will be treated as false if parameter is not preset in the request. + + /applications?excludeSystemPortals=true + schema: + type: boolean exportSecretsQueryParam: in: query name: exportSecrets diff --git a/en/identity-server/next/docs/apis/restapis/application.yaml b/en/identity-server/next/docs/apis/restapis/application.yaml index 0b70f5e71e..f675de90d5 100644 --- a/en/identity-server/next/docs/apis/restapis/application.yaml +++ b/en/identity-server/next/docs/apis/restapis/application.yaml @@ -26,6 +26,7 @@ paths: - $ref: '#/components/parameters/sortOrderQueryParam' - $ref: '#/components/parameters/sortByQueryParam' - $ref: '#/components/parameters/attributesQueryParam' + - $ref: '#/components/parameters/excludeSystemPortalsQueryParam' responses: '200': description: OK @@ -3931,6 +3932,17 @@ components: /applications?attributes=advancedConfigurations,templateId,templateVersion,clientId,issuer schema: type: string + excludeSystemPortalsQueryParam: + in: query + name: excludeSystemPortals + required: false + description: | + Specifies whether to include or exclude system portals in the response. + Default will be treated as false if parameter is not preset in the request. + + /applications?excludeSystemPortals=true + schema: + type: boolean exportSecretsQueryParam: in: query name: exportSecrets From 546b44cb383f8b036a5487038c99ada7fd1b964e Mon Sep 17 00:00:00 2001 From: Jihan Jeeth <50905371+JeethJJ@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:30:16 +0530 Subject: [PATCH 2/8] Update en/asgardeo/docs/apis/organization-apis/restapis/application.yaml Co-authored-by: Himesh Siriwardana --- .../docs/apis/organization-apis/restapis/application.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml b/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml index c222feebd4..ef0f8be9f3 100644 --- a/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml +++ b/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml @@ -352,7 +352,7 @@ components: required: false description: | Specifies whether to include or exclude system portals in the response. - Default will be treated as false if parameter is not preset in the request. + The default value is false. /applications?excludeSystemPortals=true schema: From 6c28efcdcd0fe0191fcddbd04c076d47aedd6c16 Mon Sep 17 00:00:00 2001 From: Jihan Jeeth <50905371+JeethJJ@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:30:23 +0530 Subject: [PATCH 3/8] Update en/identity-server/next/docs/apis/restapis/application.yaml Co-authored-by: Himesh Siriwardana --- en/identity-server/next/docs/apis/restapis/application.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/identity-server/next/docs/apis/restapis/application.yaml b/en/identity-server/next/docs/apis/restapis/application.yaml index f675de90d5..6c80f2e42a 100644 --- a/en/identity-server/next/docs/apis/restapis/application.yaml +++ b/en/identity-server/next/docs/apis/restapis/application.yaml @@ -3938,7 +3938,7 @@ components: required: false description: | Specifies whether to include or exclude system portals in the response. - Default will be treated as false if parameter is not preset in the request. + If not provided, the default is false, meaning system portals will be excluded. /applications?excludeSystemPortals=true schema: From 56d531a376cded68475d2bf9a8d3975eea7fff88 Mon Sep 17 00:00:00 2001 From: Himesh Siriwardana Date: Fri, 18 Oct 2024 16:59:34 +0530 Subject: [PATCH 4/8] Update en/asgardeo/docs/apis/organization-apis/restapis/application.yaml --- .../docs/apis/organization-apis/restapis/application.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml b/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml index ef0f8be9f3..66e92709a3 100644 --- a/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml +++ b/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml @@ -352,7 +352,7 @@ components: required: false description: | Specifies whether to include or exclude system portals in the response. - The default value is false. + If not provided, the default is false, meaning system portals will be excluded. /applications?excludeSystemPortals=true schema: From 8c5ea5f4f55a07798ec4b87435160ace98486fff Mon Sep 17 00:00:00 2001 From: Jihan Jeeth <50905371+JeethJJ@users.noreply.github.com> Date: Fri, 18 Oct 2024 17:09:52 +0530 Subject: [PATCH 5/8] Update en/asgardeo/docs/apis/organization-apis/restapis/application.yaml Co-authored-by: Himesh Siriwardana --- .../docs/apis/organization-apis/restapis/application.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml b/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml index 66e92709a3..b94acca05c 100644 --- a/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml +++ b/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml @@ -351,7 +351,7 @@ components: name: excludeSystemPortals required: false description: | - Specifies whether to include or exclude system portals in the response. + Specifies whether to exclude system portals in the response. If not provided, the default is false, meaning system portals will be excluded. /applications?excludeSystemPortals=true From 2048a39110c67ff6ce8a7155f4a93032d5b493d4 Mon Sep 17 00:00:00 2001 From: Jihan Jeeth <50905371+JeethJJ@users.noreply.github.com> Date: Fri, 18 Oct 2024 17:10:11 +0530 Subject: [PATCH 6/8] Update en/asgardeo/docs/apis/organization-apis/restapis/application.yaml Co-authored-by: Himesh Siriwardana --- .../docs/apis/organization-apis/restapis/application.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml b/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml index b94acca05c..bb68a25307 100644 --- a/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml +++ b/en/asgardeo/docs/apis/organization-apis/restapis/application.yaml @@ -352,7 +352,7 @@ components: required: false description: | Specifies whether to exclude system portals in the response. - If not provided, the default is false, meaning system portals will be excluded. + If not provided, the default is false, meaning system portals will be included. /applications?excludeSystemPortals=true schema: From ace58f7397aa927dfe2da6903d9f1b8d2cc6b15c Mon Sep 17 00:00:00 2001 From: Jihan Jeeth <50905371+JeethJJ@users.noreply.github.com> Date: Fri, 18 Oct 2024 17:10:19 +0530 Subject: [PATCH 7/8] Update en/identity-server/next/docs/apis/restapis/application.yaml Co-authored-by: Himesh Siriwardana --- en/identity-server/next/docs/apis/restapis/application.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/identity-server/next/docs/apis/restapis/application.yaml b/en/identity-server/next/docs/apis/restapis/application.yaml index 6c80f2e42a..e5bd694d20 100644 --- a/en/identity-server/next/docs/apis/restapis/application.yaml +++ b/en/identity-server/next/docs/apis/restapis/application.yaml @@ -3937,7 +3937,7 @@ components: name: excludeSystemPortals required: false description: | - Specifies whether to include or exclude system portals in the response. + Specifies whether to exclude system portals in the response. If not provided, the default is false, meaning system portals will be excluded. /applications?excludeSystemPortals=true From 97353c7959f2fd4759b671406371d5235ac755bc Mon Sep 17 00:00:00 2001 From: Jihan Jeeth <50905371+JeethJJ@users.noreply.github.com> Date: Fri, 18 Oct 2024 17:10:27 +0530 Subject: [PATCH 8/8] Update en/identity-server/next/docs/apis/restapis/application.yaml Co-authored-by: Himesh Siriwardana --- en/identity-server/next/docs/apis/restapis/application.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/identity-server/next/docs/apis/restapis/application.yaml b/en/identity-server/next/docs/apis/restapis/application.yaml index e5bd694d20..c62df0c703 100644 --- a/en/identity-server/next/docs/apis/restapis/application.yaml +++ b/en/identity-server/next/docs/apis/restapis/application.yaml @@ -3938,7 +3938,7 @@ components: required: false description: | Specifies whether to exclude system portals in the response. - If not provided, the default is false, meaning system portals will be excluded. + If not provided, the default is false, meaning system portals will be included. /applications?excludeSystemPortals=true schema: