Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/11 #15

Merged
merged 2 commits into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions openapi/v2023.8.2/bundled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2527,6 +2527,33 @@ paths:
x-specification-pii-or-sensitive: 'False'
x-specification-scenario: ''
x-specification-usecase: UC-C-PIC-A-004
/config/privacy-dashboard:
get:
deprecated: false
description: Read privacy dashboard
operationId: readPrivacyDashboard
responses:
'200':
content:
application/json:
schema:
properties:
hostName:
type: string
version:
type: string
state:
type: int
stateStr:
type: string
required:
- privacydashboard
type: object
description: OK
security:
- BearerAuth: []
tags:
- config
/onboard/admin:
put:
description: UPDATE - Update organisation admin
Expand Down Expand Up @@ -3219,6 +3246,30 @@ paths:
deprecated: false
security:
- BearerAuth: []
/service/organisation/coverimage:
get:
deprecated: false
description: Read organization cover image
operationId: serviceReadOrganisationCoverImage
responses:
'200':
headers: {}
security:
- BearerAuth: []
tags:
- service
/service/organisation/logoimage:
get:
deprecated: false
description: Read organization logo image
operationId: serviceReadOrganisationLogoImage
responses:
'200':
headers: {}
security:
- BearerAuth: []
tags:
- service
/service/idp/open-id:
get:
description: READ - Read an IDP
Expand Down
9 changes: 9 additions & 0 deletions openapi/v2023.8.2/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ paths:
$ref: "./paths/configUpdateApiKey.yaml"
delete:
$ref: "./paths/configDeleteApiKey.yaml"
/config/privacy-dashboard:
get:
$ref: "./paths/configReadPrivacyDashboard.yaml"
/onboard/admin:
put:
$ref: "./paths/onboardUpdateAdmin.yaml"
Expand Down Expand Up @@ -242,6 +245,12 @@ paths:
/onboard/verify/phone:
post:
$ref: ./paths/verifyPhone.yaml
/service/organisation/coverimage:
get:
$ref: ./paths/serviceReadOrganisationCoverImage.yaml
/service/organisation/logoimage:
get:
$ref: ./paths/serviceReadOrganisationLogoImage.yaml
/service/idp/open-id:
get:
$ref: ./paths/serviceReadIdp.yaml
Expand Down
25 changes: 25 additions & 0 deletions openapi/v2023.8.2/paths/configReadPrivacyDashboard.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
deprecated: false
description: Read privacy dashboard
operationId: readPrivacyDashboard
responses:
'200':
content:
application/json:
schema:
properties:
hostName:
type: string
version:
type: string
state:
type: int
stateStr:
type: string
required:
- privacydashboard
type: object
description: OK
security:
- BearerAuth: []
tags:
- config
10 changes: 10 additions & 0 deletions openapi/v2023.8.2/paths/serviceReadOrganisationCoverImage.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
deprecated: false
description: Read organization cover image
operationId: serviceReadOrganisationCoverImage
responses:
'200':
headers: {}
security:
- BearerAuth: []
tags:
- service
10 changes: 10 additions & 0 deletions openapi/v2023.8.2/paths/serviceReadOrganisationLogoImage.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
deprecated: false
description: Read organization logo image
operationId: serviceReadOrganisationLogoImage
responses:
'200':
headers: {}
security:
- BearerAuth: []
tags:
- service