Этот коммит содержится в:
Martin Kraft
2020-05-08 13:51:52 -04:00
коммит произвёл GitHub
родитель 82e27982d0
Коммит 4c2d34b097

Просмотреть файл

@@ -978,7 +978,7 @@ func (us SqlUserStore) GetAllNotInAuthService(authServices []string) ([]*model.U
var users []*model.User
if _, err := us.GetReplica().Select(&users, queryString, args...); err != nil {
return nil, model.NewAppError("SqlUserStore.GetAllUsingAuthService", "store.sql_user.get_by_auth.other.app_error", nil, "", http.StatusInternalServerError)
return nil, model.NewAppError("SqlUserStore.GetAllNotInAuthService", "store.sql_user.get_by_auth.other.app_error", nil, "", http.StatusInternalServerError)
}
return users, nil