diff --git a/pkg/api/admin_users.go b/pkg/api/admin_users.go index 81721a2d596..f937096daa9 100644 --- a/pkg/api/admin_users.go +++ b/pkg/api/admin_users.go @@ -334,7 +334,7 @@ func (hs *HTTPServer) AdminEnableUser(c *contextmodel.ReqContext) response.Respo return response.Error(http.StatusInternalServerError, "Could not enable external user", nil) } - isDisabled := true + isDisabled := false if err := hs.userService.Update(c.Req.Context(), &user.UpdateUserCommand{UserID: userID, IsDisabled: &isDisabled}); err != nil { if errors.Is(err, user.ErrUserNotFound) { return response.Error(http.StatusNotFound, user.ErrUserNotFound.Error(), nil)