(ctx context.Context, arg database.BatchUpdateWorkspaceNextStartAtParams)
| 1698 | } |
| 1699 | |
| 1700 | func (q *querier) BatchUpdateWorkspaceNextStartAt(ctx context.Context, arg database.BatchUpdateWorkspaceNextStartAtParams) error { |
| 1701 | if err := q.authorizeContext(ctx, policy.ActionUpdate, rbac.ResourceWorkspace.All()); err != nil { |
| 1702 | return err |
| 1703 | } |
| 1704 | return q.db.BatchUpdateWorkspaceNextStartAt(ctx, arg) |
| 1705 | } |
| 1706 | |
| 1707 | func (q *querier) BatchUpsertConnectionLogs(ctx context.Context, arg database.BatchUpsertConnectionLogsParams) error { |
| 1708 | if err := q.authorizeContext(ctx, policy.ActionUpdate, rbac.ResourceConnectionLog); err != nil { |
nothing calls this directly
no test coverage detected