Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit ffeaefc

Browse files
committed
Merge branch 'develop' of https://github.com/IdentityPython/oidc-op into develop
2 parents f361dc5 + b6848ec commit ffeaefc

File tree

9 files changed

+9
-10
lines changed

9 files changed

+9
-10
lines changed

docs/source/contents/conf.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -571,7 +571,7 @@ An example::
571571
"phone_number",
572572
"phone_number_verified"
573573
],
574-
"add_claim_by_scope": true,
574+
"add_claims_by_scope": true,
575575
"aud": ["https://example.org/appl"]
576576
}
577577
},

example/flask_op/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@
311311
"phone_number",
312312
"phone_number_verified"
313313
],
314-
"add_claim_by_scope": true,
314+
"add_claims_by_scope": true,
315315
"aud": [
316316
"https://example.org/appl"
317317
]

example/flask_op/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ op:
8888
- email_verified
8989
- phone_number
9090
- phone_number_verified
91-
add_claim_by_scope: True
91+
add_claims_by_scope: True
9292
aud:
9393
- https://example.org/appl
9494
refresh:

tests/op_config.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,6 @@
216216
}
217217
}
218218
},
219-
"stupid_fake_thing": "asdasd",
220219
"httpc_params": {
221220
"verify": false
222221
},
@@ -326,7 +325,7 @@
326325
"phone_number",
327326
"phone_number_verified"
328327
],
329-
"add_claim_by_scope": true,
328+
"add_claims_by_scope": true,
330329
"aud": [
331330
"https://example.org/appl"
332331
]

tests/op_config_defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"kwargs": {
134134
"lifetime": 3600,
135135
"add_claims": ["email", "email_verified", "phone_number", "phone_number_verified",],
136-
"add_claim_by_scope": True,
136+
"add_claims_by_scope": True,
137137
"aud": ["https://example.org/appl"],
138138
},
139139
},

tests/srv_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ op:
9696
- email_verified
9797
- phone_number
9898
- phone_number_verified
99-
add_claim_by_scope: True
99+
add_claims_by_scope: True
100100
aud:
101101
- https://example.org/appl
102102
refresh:

tests/test_06_session_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def create_session_manager(self):
5555
"kwargs": {
5656
"lifetime": 3600,
5757
"add_claims": True,
58-
"add_claim_by_scope": True,
58+
"add_claims_by_scope": True,
5959
"aud": ["https://example.org/appl"],
6060
},
6161
},

tests/test_08_session_life.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def setup_session_manager(self):
267267
"phone_number",
268268
"phone_number_verified",
269269
],
270-
"add_claim_by_scope": True,
270+
"add_claims_by_scope": True,
271271
"aud": ["https://example.org/appl"],
272272
},
273273
},

tests/test_40_oauth2_pushed_authorization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def create_endpoint(self):
9595
"phone_number",
9696
"phone_number_verified",
9797
],
98-
"add_claim_by_scope": True,
98+
"add_claims_by_scope": True,
9999
"aud": ["https://example.org/appl"],
100100
},
101101
},

0 commit comments

Comments
 (0)