(ctx context.Context, value string)
| 8008 | } |
| 8009 | |
| 8010 | func (q *querier) UpsertApplicationName(ctx context.Context, value string) error { |
| 8011 | if err := q.authorizeContext(ctx, policy.ActionUpdate, rbac.ResourceDeploymentConfig); err != nil { |
| 8012 | return err |
| 8013 | } |
| 8014 | return q.db.UpsertApplicationName(ctx, value) |
| 8015 | } |
| 8016 | |
| 8017 | func (q *querier) UpsertBoundaryUsageStats(ctx context.Context, arg database.UpsertBoundaryUsageStatsParams) (bool, error) { |
| 8018 | if err := q.authorizeContext(ctx, policy.ActionUpdate, rbac.ResourceBoundaryUsage); err != nil { |
nothing calls this directly
no test coverage detected