2022-12-28 00:46:05 +00:00
|
|
|
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."),
|
2022-12-28 00:46:05 +00:00
|
|
|
),
|
2023-01-31 01:06:06 +00:00
|
|
|
"email": ("at", _("Your e-mail address.")),
|
2022-12-28 00:46:05 +00:00
|
|
|
"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")),
|
2022-12-28 00:46:05 +00:00
|
|
|
}
|