Skip to content

Commit e1827eb

Browse files
bart-maykinCharString
authored andcommitted
🎨 [#120] removed fake jwt authentication class
1 parent f168868 commit e1827eb

File tree

20 files changed

+72
-6347
lines changed

20 files changed

+72
-6347
lines changed

src/openklant/components/contactgegevens/api/schema.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Description WIP.
66
"""
77

8-
info = {
8+
custom_settings = {
99
"TITLE": "contactgegevens",
1010
"DESCRIPTION": description,
1111
"VERSION": settings.CONTACTGEGEVENS_API_VERSION,

src/openklant/components/contactgegevens/api/urls.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
PersoonViewSet,
1313
)
1414

15-
from .schema import info
15+
from .schema import custom_settings
1616

1717
app_name = "contactgegevens"
1818

@@ -31,15 +31,15 @@
3131
"schema/openapi.json",
3232
SpectacularJSONAPIView.as_view(
3333
urlconf="openklant.components.contactgegevens.api.urls",
34-
custom_settings=info,
34+
custom_settings=custom_settings,
3535
),
3636
name="schema-json-contactgegevens",
3737
),
3838
path(
3939
"schema/openapi.yaml",
4040
SpectacularYAMLAPIView.as_view(
4141
urlconf="openklant.components.contactgegevens.api.urls",
42-
custom_settings=info,
42+
custom_settings=custom_settings,
4343
),
4444
name="schema-yaml-contactgegevens",
4545
),

src/openklant/components/klantinteracties/api/schema.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Description WIP.
66
"""
77

8-
info = {
8+
custom_settings = {
99
"TITLE": "klantinteracties",
1010
"DESCRIPTION": description,
1111
"VERSION": settings.KLANTINTERACTIES_API_VERSION,

src/openklant/components/klantinteracties/api/urls.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
PartijViewSet,
2626
)
2727

28-
from .schema import info
28+
from .schema import custom_settings
2929

3030
app_name = "klantinteracties"
3131

@@ -57,15 +57,15 @@
5757
"schema/openapi.json",
5858
SpectacularJSONAPIView.as_view(
5959
urlconf="openklant.components.klantinteracties.api.urls",
60-
custom_settings=info,
60+
custom_settings=custom_settings,
6161
),
6262
name="schema-json-klantinteracties",
6363
),
6464
path(
6565
"schema/openapi.yaml",
6666
SpectacularYAMLAPIView.as_view(
6767
urlconf="openklant.components.klantinteracties.api.urls",
68-
custom_settings=info,
68+
custom_settings=custom_settings,
6969
),
7070
name="schema-yaml-klantinteracties",
7171
),

src/openklant/components/klantinteracties/openapi.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -1745,6 +1745,10 @@ components:
17451745
description: Naam die de betrokkene bij klantcontact tijdens vervolghandelingen
17461746
naar aanleiding van dat contact wil gebruiken. Deze mag afwijken van eventueel
17471747
in de Basisregistratie Personen (BRP) bekende naam van de betrokkene.
1748+
volledigeNaam:
1749+
type: string
1750+
readOnly: true
1751+
description: De voledige naam van de betrokkene.
17481752
rol:
17491753
allOf:
17501754
- $ref: '#/components/schemas/RolEnum'
@@ -1767,6 +1771,7 @@ components:
17671771
- rol
17681772
- url
17691773
- uuid
1774+
- volledigeNaam
17701775
- wasPartij
17711776
BetrokkeneCorrespondentieadres:
17721777
type: object
@@ -2938,6 +2943,10 @@ components:
29382943
description: Naam die de betrokkene bij klantcontact tijdens vervolghandelingen
29392944
naar aanleiding van dat contact wil gebruiken. Deze mag afwijken van eventueel
29402945
in de Basisregistratie Personen (BRP) bekende naam van de betrokkene.
2946+
volledigeNaam:
2947+
type: string
2948+
readOnly: true
2949+
description: De voledige naam van de betrokkene.
29412950
rol:
29422951
allOf:
29432952
- $ref: '#/components/schemas/RolEnum'

src/openklant/components/klantinteracties/resources.md

-181
This file was deleted.

0 commit comments

Comments
 (0)