Configuration¶
These are the available settings.
All attributes prefixed SCIM2_SERVER_* can be overridden from your Django
project’s settings module by defining a setting with the same name.
- class django_scim2_server.conf.AppSettings[source]¶
Access this instance as .conf.app_settings.
- SCIM2_SERVER_AUTH_CHECK: str = 'django_scim2_server.auth.is_superuser'¶
Dotted path to a callable
(HttpRequest) -> boolfor access control.
- SCIM2_SERVER_GROUP_ADAPTER: str = 'django_scim2_server.adapters.DefaultGroupAdapter'¶
Dotted path to the group adapter class.
- SCIM2_SERVER_GROUP_MODEL: str = 'auth.Group'¶
Target group model (app_label.ModelName).
- SCIM2_SERVER_USER_ADAPTER: str = 'django_scim2_server.adapters.DefaultUserAdapter'¶
Dotted path to the user adapter class.
- SCIM2_SERVER_USER_MODEL: str = 'auth.User'¶
Target user model (app_label.ModelName).