refactor CheckSetup()
This commit is contained in:
parent
4967d6bdf1
commit
cfd16e8e6c
@ -9,17 +9,17 @@ import (
|
||||
)
|
||||
|
||||
func (authMux *AuthMux) CheckSetup(w http.ResponseWriter, r *http.Request) {
|
||||
if authMux.app.IsInitialized() {
|
||||
authMux.accessDenied(w, r)
|
||||
if !authMux.app.IsInitialized() {
|
||||
usrSetup := UserInfoJson{
|
||||
Name: "setup",
|
||||
Role: user.ROLE_SETUP,
|
||||
}
|
||||
|
||||
w.Header().Add("Content-Type", "application/json")
|
||||
jsonString, _ := json.Marshal(usrSetup)
|
||||
fmt.Fprintf(w, "%s", string(jsonString))
|
||||
return
|
||||
}
|
||||
|
||||
usrSetup := UserInfoJson{
|
||||
Name: "setup",
|
||||
Role: user.ROLE_SETUP,
|
||||
}
|
||||
|
||||
w.Header().Add("Content-Type", "application/json")
|
||||
jsonString, _ := json.Marshal(usrSetup)
|
||||
fmt.Fprintf(w, "%s", string(jsonString))
|
||||
authMux.accessDenied(w, r)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user