canaille-globuzma/canaille/oidc/utils.py

13 lines
386 B
Python
Raw Normal View History

from flask_babel import lazy_gettext as _
SCOPE_DETAILS = {
"profile": (
"id card outline",
2023-01-31 01:06:06 +00:00
_("Info about yourself, such as your name."),
),
2023-01-31 01:06:06 +00:00
"email": ("at", _("Your e-mail address.")),
"address": ("envelope open outline", _("Your postal address.")),
"phone": ("phone", _("Your phone number.")),
2023-01-31 01:06:06 +00:00
"groups": ("users", _("Groups you belong to")),
}