feat: add new user service object that implements iris context User interface
This commit is contained in:
parent
892f093d93
commit
a14dad43ed
|
@ -0,0 +1,18 @@
|
|||
package account
|
||||
|
||||
import (
|
||||
"git.lumeweb.com/LumeWeb/portal/model"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
type User struct {
|
||||
account *model.Account
|
||||
}
|
||||
|
||||
func (u User) GetID() (string, error) {
|
||||
return strconv.Itoa(int(u.account.ID)), nil
|
||||
}
|
||||
|
||||
func NewUser(account *model.Account) *User {
|
||||
return &User{account: account}
|
||||
}
|
Loading…
Reference in New Issue