use underscores for python functions

This commit is contained in:
Tobias Bengfort
2021-06-23 09:19:21 +02:00
parent 68e257d60e
commit 62bb50307e
5 changed files with 23 additions and 23 deletions

View File

@@ -4,7 +4,7 @@ from . import FIDO2, U2F, Email, TrustedDevice, helpers, totp, views
urlpatterns = [
path("totp/start/", totp.start, name="start_new_otop"),
path("totp/getToken/", totp.getToken, name="get_new_otop"),
path("totp/getToken/", totp.get_token, name="get_new_otop"),
path("totp/verify/", totp.verify, name="verify_otop"),
path("totp/auth/", totp.auth, name="totp_auth"),
path("totp/recheck/", totp.recheck, name="totp_recheck"),
@@ -27,15 +27,15 @@ urlpatterns = [
path("td/", TrustedDevice.start, name="start_td"),
path("td/add/", TrustedDevice.add, name="add_td"),
path("td/send_link/", TrustedDevice.send_email, name="td_sendemail"),
path("td/get-ua/", TrustedDevice.getUserAgent, name="td_get_useragent"),
path("td/get-ua/", TrustedDevice.get_user_agent, name="td_get_useragent"),
path("td/trust/", TrustedDevice.trust_device, name="td_trust_device"),
path("u2f/checkTrusted/", TrustedDevice.checkTrusted, name="td_checkTrusted"),
path("u2f/secure_device", TrustedDevice.getCookie, name="td_securedevice"),
path("u2f/checkTrusted/", TrustedDevice.check_trusted, name="td_checkTrusted"),
path("u2f/secure_device", TrustedDevice.get_cookie, name="td_securedevice"),
path("", views.index, name="mfa_home"),
path("goto/<method>/", views.goto, name="mfa_goto"),
path("selct_method/", views.show_methods, name="mfa_methods_list"),
path("recheck/", helpers.recheck, name="mfa_recheck"),
path("toggleKey/", views.toggleKey, name="toggle_key"),
path("delete/", views.delKey, name="mfa_delKey"),
path("toggleKey/", views.toggle_key, name="toggle_key"),
path("delete/", views.del_key, name="mfa_delKey"),
path("reset/", views.reset_cookie, name="mfa_reset_cookie"),
]