canaille-globuzma/canaille/oidc/utils.py
2023-02-03 18:49:44 +01:00

12 lines
387 B
Python

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