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

📝 [#248] Use correct API root in redoc OAS view #258

Merged
merged 1 commit into from
Oct 3, 2024
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
1 change: 1 addition & 0 deletions src/openklant/components/contactgegevens/api/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"TITLE": "contactgegevens",
"DESCRIPTION": description,
"VERSION": settings.CONTACTGEGEVENS_API_VERSION,
"SERVERS": [{"url": "/contactgegevens/api/v1"}],
"TAGS": [
{"name": "organisaties"},
{"name": "personen"},
Expand Down
2 changes: 2 additions & 0 deletions src/openklant/components/contactgegevens/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,8 @@ components:
in: header
name: Authorization
description: Token-based authentication with required prefix "Token"
servers:
- url: /contactgegevens/api/v1
tags:
- name: organisaties
- name: personen
1 change: 1 addition & 0 deletions src/openklant/components/klantinteracties/api/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"TITLE": "klantinteracties",
"DESCRIPTION": description,
"VERSION": settings.KLANTINTERACTIES_API_VERSION,
"SERVERS": [{"url": "/klantinteracties/api/v1"}],
"TAGS": [
{"name": "actoren"},
{"name": "actor klantcontacten"},
Expand Down
2 changes: 2 additions & 0 deletions src/openklant/components/klantinteracties/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3887,7 +3887,7 @@
type: array
items:
$ref: '#/components/schemas/CategorieRelatie'
PaginatedDigitaalAdresList:

Check warning on line 3890 in src/openklant/components/klantinteracties/openapi.yaml

View workflow job for this annotation

GitHub Actions / Run with component klantinteracties

oas3-unused-components-schema Potentially unused components schema has been detected.
type: object
required:
- count
Expand Down Expand Up @@ -4002,7 +4002,7 @@
type: array
items:
$ref: '#/components/schemas/InterneTaak'
PaginatedKlantcontactList:

Check warning on line 4005 in src/openklant/components/klantinteracties/openapi.yaml

View workflow job for this annotation

GitHub Actions / Run with component klantinteracties

oas3-unused-components-schema Potentially unused components schema has been detected.
type: object
required:
- count
Expand Down Expand Up @@ -4071,7 +4071,7 @@
type: array
items:
$ref: '#/components/schemas/PartijIdentificator'
PaginatedPartijList:

Check warning on line 4074 in src/openklant/components/klantinteracties/openapi.yaml

View workflow job for this annotation

GitHub Actions / Run with component klantinteracties

oas3-unused-components-schema Potentially unused components schema has been detected.
type: object
required:
- count
Expand Down Expand Up @@ -5188,6 +5188,8 @@
in: header
name: Authorization
description: Token-based authentication with required prefix "Token"
servers:
- url: /klantinteracties/api/v1
tags:
- name: actoren
- name: actor klantcontacten
Expand Down
Loading