2bcab5d098
- moved all server related things into the folder `server`, so this configuration is parallel to the client. - All main "services" are now folders in the root directory - Added Dockerfiles to each service (currently server and client) - Added a docker compose configuration to start everything together. Currently there are heavy dependencies into https://github.com/OpenSlides/openslides-docker-compose - Resturctured the .gitignore. If someone needs something excluded, please add it to the right section. - Added initial build setup with Docker and docker-compose. - removed setup.py. We won't deliver OpenSlides via pip anymore.
26 lines
629 B
Python
26 lines
629 B
Python
from typing import List
|
|
|
|
from openslides.users.user_backend import BaseUserBackend
|
|
|
|
from .settings import get_saml_settings
|
|
|
|
|
|
class SamlUserBackend(BaseUserBackend):
|
|
"""
|
|
User backend for SAML users.
|
|
Disallowed update keys are the keys given by the IDP.
|
|
"""
|
|
|
|
def __init__(self):
|
|
self.disallowed_update_keys: List[str] = [
|
|
os_attribute
|
|
for os_attribute, _ in get_saml_settings().attribute_mapping.values()
|
|
]
|
|
|
|
@property
|
|
def name(self) -> str:
|
|
return "saml"
|
|
|
|
def get_disallowed_update_keys(self) -> List[str]:
|
|
return self.disallowed_update_keys
|