MM-12488: Accepts parameters to search and filter LDAP groups. (#10418)

This commit is contained in:
Martin Kraft
2019-03-14 15:43:52 -04:00
committed by GitHub
parent e94faea383
commit 5dbf8aec7d
5 changed files with 33 additions and 4 deletions

View File

@@ -19,6 +19,6 @@ type LdapInterface interface {
GetAllLdapUsers() ([]*model.User, *model.AppError)
MigrateIDAttribute(toAttribute string) error
GetGroup(groupUID string) (*model.Group, *model.AppError)
GetAllGroupsPage(page int, perPage int) ([]*model.Group, int, *model.AppError)
GetAllGroupsPage(page int, perPage int, opts model.GroupSearchOpts) ([]*model.Group, int, *model.AppError)
FirstLoginSync(userID, userAuthService, userAuthData string) *model.AppError
}