Append to Users list

master
Harshavardhana 10 years ago
parent b3b73ff4cb
commit 95f214c99b
  1. 7
      pkg/api/webuiapi/webuiapi.go

@ -77,6 +77,13 @@ func (web *webUiApi) accessHandler(w http.ResponseWriter, req *http.Request) {
}
user.SecretKey = string(secretkey)
err = web.conf.ReadConfig()
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
w.Write([]byte(err.Error()))
return
}
web.conf.AddUser(user)
err = web.conf.WriteConfig()
if err != nil {

Loading…
Cancel
Save