diff options
author | Markus Krogh <markus@nordu.net> | 2018-06-13 13:42:47 +0200 |
---|---|---|
committer | Markus Krogh <markus@nordu.net> | 2018-06-13 13:42:47 +0200 |
commit | 3c0dce89d456c04767ec3607d9de1c9c8056a6ee (patch) | |
tree | f6d99d492a7ab42afe6c691b7351cea1ce491e7d /src/apps/changepw/urls.py | |
parent | 809a262ce8e0c7593487aeb921d3f72092b76788 (diff) |
Remove python pwman
Diffstat (limited to 'src/apps/changepw/urls.py')
-rw-r--r-- | src/apps/changepw/urls.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/apps/changepw/urls.py b/src/apps/changepw/urls.py deleted file mode 100644 index 8983950..0000000 --- a/src/apps/changepw/urls.py +++ /dev/null @@ -1,13 +0,0 @@ -# This also imports the include function -from django.conf.urls import url - -from . import views - -urlpatterns = [ - url(r'^$', views.index, name='index'), - url(r'^changepw/(?P<pwtype>[-\w]+)$', views.change_password, name='changepw'), - url(r'^changeother$', views.change_other, name='changeother'), - url(r'^ideviceconf$', views.ideviceconf, name='ideviceconf'), - url(r'^changepublicsshkeys$', views.change_public_ssh_keys, name='changepublicsshkeys'), - url(r'^changepublicsshkeys/deletekey/(?P<key_number>\d+)$', views.delete_public_ssh_key, name='deletepublicsshkey'), -] |