mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
26634505ba
* fix: proper error message when user not found by loginname * add more not found and fix some typos
30 lines
1012 B
Go
30 lines
1012 B
Go
package view
|
|
|
|
import (
|
|
caos_errs "github.com/caos/zitadel/internal/errors"
|
|
usr_model "github.com/caos/zitadel/internal/user/model"
|
|
"github.com/caos/zitadel/internal/user/repository/view/model"
|
|
"github.com/caos/zitadel/internal/view/repository"
|
|
"github.com/jinzhu/gorm"
|
|
)
|
|
|
|
func NotifyUserByID(db *gorm.DB, table, userID string) (*model.NotifyUser, error) {
|
|
user := new(model.NotifyUser)
|
|
query := repository.PrepareGetByKey(table, model.UserSearchKey(usr_model.NotifyUserSearchKeyUserID), userID)
|
|
err := query(db, user)
|
|
if caos_errs.IsNotFound(err) {
|
|
return nil, caos_errs.ThrowNotFound(nil, "VIEW-Gad31", "Errors.User.NotFound")
|
|
}
|
|
return user, err
|
|
}
|
|
|
|
func PutNotifyUser(db *gorm.DB, table string, project *model.NotifyUser) error {
|
|
save := repository.PrepareSave(table)
|
|
return save(db, project)
|
|
}
|
|
|
|
func DeleteNotifyUser(db *gorm.DB, table, userID string) error {
|
|
delete := repository.PrepareDeleteByKey(table, model.UserSearchKey(usr_model.NotifyUserSearchKeyUserID), userID)
|
|
return delete(db)
|
|
}
|