diff options
author | Alex Auvolat <alex@adnab.me> | 2020-02-09 18:28:42 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-02-09 18:28:42 +0100 |
commit | 13222204392009e07382eecb908b7e6e01155ec4 (patch) | |
tree | 5295169a49765d9649be96d3bc599ce73c6640a0 /main.go | |
parent | e9140c5a66ff9035dc973e93aad9c0ed909b6f13 (diff) | |
download | guichet-13222204392009e07382eecb908b7e6e01155ec4.tar.gz guichet-13222204392009e07382eecb908b7e6e01155ec4.zip |
User list
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -108,6 +108,10 @@ func main() { http.HandleFunc("/profile", handleProfile) http.HandleFunc("/passwd", handlePasswd) + http.HandleFunc("/admin/users", handleAdminUsers) + //http.HandleFunc("/admin/groups", handleAdminGroups) + //http.HandleFunc("/admin/ldap", handleAdminLDAP) + staticfiles := http.FileServer(http.Dir("static")) http.Handle("/static/", http.StripPrefix("/static/", staticfiles)) |