Reimplemented password reset for users

This commit is contained in:
frikky
2020-06-16 05:39:57 +02:00
parent 4e6b12dc28
commit 80c893e574
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -6034,6 +6034,7 @@ func init() {
r.HandleFunc("/api/v1/getinfo", handleInfo).Methods("GET", "OPTIONS")
r.HandleFunc("/api/v1/getsettings", handleSettings).Methods("GET", "OPTIONS")
r.HandleFunc("/api/v1/generateapikey", handleApiGeneration).Methods("GET", "OPTIONS")
r.HandleFunc("/api/v1/passwordchange", handlePasswordChange).Methods("POST", "OPTIONS")
r.HandleFunc("/api/v1/docs", getDocList).Methods("GET", "OPTIONS")
r.HandleFunc("/api/v1/docs/{key}", getDocs).Methods("GET", "OPTIONS")