Auth
user_create(next_auth, context, data_dict=None)
¶
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
next_auth
|
the next auth function in the chain |
required | |
context
|
|
required | |
data_dict
|
(Default value = None) |
None
|
Source code in ckanext/ldap/logic/auth.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | |
user_update(next_auth, context, data_dict)
¶
Ensure LDAP users cannot be edited, and name clash with ldap users.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
next_auth
|
the next auth function in the chain |
required | |
context
|
|
required | |
data_dict
|
|
required |
Source code in ckanext/ldap/logic/auth.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | |