(ctx context.Context, arg database.TouchChatDebugRunUpdatedAtParams)
| 6465 | } |
| 6466 | |
| 6467 | func (q *querier) TouchChatDebugRunUpdatedAt(ctx context.Context, arg database.TouchChatDebugRunUpdatedAtParams) error { |
| 6468 | chat, err := q.db.GetChatByID(ctx, arg.ChatID) |
| 6469 | if err != nil { |
| 6470 | return err |
| 6471 | } |
| 6472 | if err := q.authorizeContext(ctx, policy.ActionUpdate, chat); err != nil { |
| 6473 | return err |
| 6474 | } |
| 6475 | return q.db.TouchChatDebugRunUpdatedAt(ctx, arg) |
| 6476 | } |
| 6477 | |
| 6478 | func (q *querier) TouchChatDebugStepAndRun(ctx context.Context, arg database.TouchChatDebugStepAndRunParams) error { |
| 6479 | chat, err := q.db.GetChatByID(ctx, arg.ChatID) |
nothing calls this directly
no test coverage detected