mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
501b225e40
* Move accounts settings under sudo * Fixed sudo mode * Add a log message * Update test * Renamed sudo_setting to account_setting * Moved simple login data export and alias/import export to account settings * Move account settings to the top-right dropdown
74 lines
1.2 KiB
Python
74 lines
1.2 KiB
Python
from .views import (
|
|
index,
|
|
pricing,
|
|
setting,
|
|
custom_alias,
|
|
subdomain,
|
|
billing,
|
|
alias_log,
|
|
alias_export,
|
|
unsubscribe,
|
|
api_key,
|
|
custom_domain,
|
|
alias_contact_manager,
|
|
enter_sudo,
|
|
mfa_setup,
|
|
mfa_cancel,
|
|
fido_setup,
|
|
coupon,
|
|
fido_manage,
|
|
domain_detail,
|
|
lifetime_licence,
|
|
directory,
|
|
mailbox,
|
|
mailbox_detail,
|
|
refused_email,
|
|
referral,
|
|
contact_detail,
|
|
setup_done,
|
|
batch_import,
|
|
alias_transfer,
|
|
app,
|
|
delete_account,
|
|
notification,
|
|
support,
|
|
account_setting,
|
|
)
|
|
|
|
__all__ = [
|
|
"index",
|
|
"pricing",
|
|
"setting",
|
|
"custom_alias",
|
|
"subdomain",
|
|
"billing",
|
|
"alias_log",
|
|
"alias_export",
|
|
"unsubscribe",
|
|
"api_key",
|
|
"custom_domain",
|
|
"alias_contact_manager",
|
|
"enter_sudo",
|
|
"mfa_setup",
|
|
"mfa_cancel",
|
|
"fido_setup",
|
|
"coupon",
|
|
"fido_manage",
|
|
"domain_detail",
|
|
"lifetime_licence",
|
|
"directory",
|
|
"mailbox",
|
|
"mailbox_detail",
|
|
"refused_email",
|
|
"referral",
|
|
"contact_detail",
|
|
"setup_done",
|
|
"batch_import",
|
|
"alias_transfer",
|
|
"app",
|
|
"delete_account",
|
|
"notification",
|
|
"support",
|
|
"account_setting",
|
|
]
|