File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -117,17 +117,17 @@ The dictionary can also map extra details to the Django user account using an
117
117
`Extension of the User model <https://docs.djangoproject.com/en/stable/topics/auth/customizing/#extending-the-existing-user-model >`_
118
118
Set a dictionary as value in the CLAIM_MAPPING setting with as key the name User model.
119
119
You will need to make sure the related field exists before the user authenticates.
120
- This can be done by creating a receiver on the
120
+ This can be done by creating a receiver on the
121
121
`post_save <https://docs.djangoproject.com/en/4.0/ref/signals/#post-save >`_ signal that
122
122
creates the related instance when the ``User `` instance is created.
123
123
124
124
example
125
125
126
126
.. code-block :: python
127
127
128
- ' CLAIM_MAPPING' : {' first_name' : ' given_name' ,
129
- ' last_name' : ' family_name' ,
130
- ' email' : ' upn' ,
128
+ ' CLAIM_MAPPING' : {' first_name' : ' given_name' ,
129
+ ' last_name' : ' family_name' ,
130
+ ' email' : ' upn' ,
131
131
' userprofile' : {
132
132
' employee_id' : ' employeeid'
133
133
}}
@@ -369,6 +369,16 @@ RETRIES
369
369
The number of time a request to the ADFS server is retried. It allows, in combination with :ref: `timeout_setting `
370
370
to fine tune the behaviour of the connection to ADFS.
371
371
372
+
373
+ SCOPES
374
+ ------
375
+ * **Default **: ``[] ``
376
+ * **Type **: ``list ``
377
+
378
+ **Only used when you have v2 AzureAD config **
379
+
380
+
381
+
372
382
SERVER
373
383
------
374
384
* **Default **:
You can’t perform that action at this time.
0 commit comments