(ctx context.Context, value string)
| 8213 | } |
| 8214 | |
| 8215 | func (q *querier) UpsertLogoURL(ctx context.Context, value string) error { |
| 8216 | if err := q.authorizeContext(ctx, policy.ActionUpdate, rbac.ResourceDeploymentConfig); err != nil { |
| 8217 | return err |
| 8218 | } |
| 8219 | return q.db.UpsertLogoURL(ctx, value) |
| 8220 | } |
| 8221 | |
| 8222 | func (q *querier) UpsertMCPServerUserToken(ctx context.Context, arg database.UpsertMCPServerUserTokenParams) (database.MCPServerUserToken, error) { |
| 8223 | if err := q.authorizeContext(ctx, policy.ActionUpdate, rbac.ResourceDeploymentConfig); err != nil { |
nothing calls this directly
no test coverage detected