(ctx context.Context)
| 3639 | } |
| 3640 | |
| 3641 | func (q *querier) GetLicenses(ctx context.Context) ([]database.License, error) { |
| 3642 | fetch := func(ctx context.Context, _ interface{}) ([]database.License, error) { |
| 3643 | return q.db.GetLicenses(ctx) |
| 3644 | } |
| 3645 | return fetchWithPostFilter(q.auth, policy.ActionRead, fetch)(ctx, nil) |
| 3646 | } |
| 3647 | |
| 3648 | func (q *querier) GetLogoURL(ctx context.Context) (string, error) { |
| 3649 | // No authz checks |
nothing calls this directly
no test coverage detected