1
0

fix: compile errors

This commit is contained in:
kolaente
2023-03-14 15:35:03 +01:00
parent 93056da792
commit a21bff3ffb
5 changed files with 24 additions and 60 deletions

View File

@ -33,7 +33,7 @@ type ProjectUserOpts struct {
}
// ListUsers returns a list with all users, filtered by an optional search string
func ProjectUsers(s *xorm.Session, search string, opts *ProjectUserOpts) (users []*User, err error) {
func ListUsers(s *xorm.Session, search string, opts *ProjectUserOpts) (users []*User, err error) {
if opts == nil {
opts = &ProjectUserOpts{}
}