mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
9256a520a4
* chore: move user_auth models to (mostly) login service
16 lines
299 B
Go
16 lines
299 B
Go
package ldap
|
|
|
|
type Groups interface {
|
|
GetTeams(groups []string, orgIDs []int64) ([]TeamOrgGroupDTO, error)
|
|
}
|
|
|
|
type OSSGroups struct{}
|
|
|
|
func ProvideGroupsService() *OSSGroups {
|
|
return &OSSGroups{}
|
|
}
|
|
|
|
func (*OSSGroups) GetTeams(_ []string, _ []int64) ([]TeamOrgGroupDTO, error) {
|
|
return nil, nil
|
|
}
|