mirror of
https://github.com/documize/community.git
synced 2025-07-21 14:19:43 +02:00
wip
This commit is contained in:
parent
33a66c87cf
commit
7c34053e3d
25 changed files with 4884 additions and 3729 deletions
|
@ -48,8 +48,6 @@ func (p *Persister) AddUser(user entity.User) (err error) {
|
|||
return er
|
||||
}
|
||||
|
||||
p.Base.Audit(p.Context, "add-user", "", "")
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -205,8 +203,6 @@ func (p *Persister) UpdateUser(user entity.User) (err error) {
|
|||
return
|
||||
}
|
||||
|
||||
p.Base.Audit(p.Context, "update-user", "", "")
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -233,8 +229,6 @@ func (p *Persister) UpdateUserPassword(userID, salt, password string) (err error
|
|||
return er
|
||||
}
|
||||
|
||||
p.Base.Audit(p.Context, "change-password", "", "")
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -255,8 +249,6 @@ func (p *Persister) DeactiveUser(userID string) (err error) {
|
|||
return
|
||||
}
|
||||
|
||||
p.Base.Audit(p.Context, "deactivate-user", "", "")
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
|
@ -285,7 +277,5 @@ func (p *Persister) ForgotUserPassword(email, token string) (err error) {
|
|||
return
|
||||
}
|
||||
|
||||
p.Base.Audit(p.Context, "forgot-password", "", "")
|
||||
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue