mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
05709ce411
* chore: add alias for InitTestDB and Session Adds an alias for the sqlstore InitTestDB and Session, and updates tests using these to reduce dependencies on the sqlstore.Store. * next pass of removing sqlstore imports * last little bit * remove mockstore where possible
27 lines
491 B
Go
27 lines
491 B
Go
package store
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/db"
|
|
)
|
|
|
|
type OrgStore interface {
|
|
GetOrgs(ctx context.Context) ([]int64, error)
|
|
}
|
|
|
|
func (st DBstore) GetOrgs(ctx context.Context) ([]int64, error) {
|
|
orgs := make([]int64, 0)
|
|
err := st.SQLStore.WithDbSession(ctx, func(sess *db.Session) error {
|
|
q := "SELECT id FROM org"
|
|
if err := sess.SQL(q).Find(&orgs); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return orgs, nil
|
|
}
|