mirror of
https://github.com/grafana/grafana.git
synced 2024-12-02 13:39:19 -06:00
875e0736ec
* Remove bus for GetTeams for LDAP * Fix lint
18 lines
334 B
Go
18 lines
334 B
Go
package ldap
|
|
|
|
import "github.com/grafana/grafana/pkg/models"
|
|
|
|
type Groups interface {
|
|
GetTeams(groups []string) ([]models.TeamOrgGroupDTO, error)
|
|
}
|
|
|
|
type OSSGroups struct{}
|
|
|
|
func ProvideGroupsService() *OSSGroups {
|
|
return &OSSGroups{}
|
|
}
|
|
|
|
func (*OSSGroups) GetTeams(_ []string) ([]models.TeamOrgGroupDTO, error) {
|
|
return nil, nil
|
|
}
|