(ctx context.Context, lastSeenAfter database.UpdateInactiveUsersToDormantParams)
| 6920 | } |
| 6921 | |
| 6922 | func (q *querier) UpdateInactiveUsersToDormant(ctx context.Context, lastSeenAfter database.UpdateInactiveUsersToDormantParams) ([]database.UpdateInactiveUsersToDormantRow, error) { |
| 6923 | if err := q.authorizeContext(ctx, policy.ActionCreate, rbac.ResourceSystem); err != nil { |
| 6924 | return nil, err |
| 6925 | } |
| 6926 | return q.db.UpdateInactiveUsersToDormant(ctx, lastSeenAfter) |
| 6927 | } |
| 6928 | |
| 6929 | func (q *querier) UpdateInboxNotificationReadStatus(ctx context.Context, args database.UpdateInboxNotificationReadStatusParams) error { |
| 6930 | fetchFunc := func(ctx context.Context, args database.UpdateInboxNotificationReadStatusParams) (database.InboxNotification, error) { |
nothing calls this directly
no test coverage detected