(ctx context.Context, ids []uuid.UUID)
| 2366 | } |
| 2367 | |
| 2368 | func (q *querier) DeleteWebpushSubscriptions(ctx context.Context, ids []uuid.UUID) error { |
| 2369 | if err := q.authorizeContext(ctx, policy.ActionDelete, rbac.ResourceSystem); err != nil { |
| 2370 | return err |
| 2371 | } |
| 2372 | return q.db.DeleteWebpushSubscriptions(ctx, ids) |
| 2373 | } |
| 2374 | |
| 2375 | func (q *querier) DeleteWorkspaceACLByID(ctx context.Context, id uuid.UUID) error { |
| 2376 | fetch := func(ctx context.Context, id uuid.UUID) (database.WorkspaceTable, error) { |
nothing calls this directly
no test coverage detected