Append to Users list

This commit is contained in:
Harshavardhana 2015-02-05 15:40:51 -08:00
parent b3b73ff4cb
commit 95f214c99b

View file

@ -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 {