(ctx context.Context)
| 3553 | } |
| 3554 | |
| 3555 | func (q *querier) GetHealthSettings(ctx context.Context) (string, error) { |
| 3556 | // No authz checks |
| 3557 | return q.db.GetHealthSettings(ctx) |
| 3558 | } |
| 3559 | |
| 3560 | func (q *querier) GetInboxNotificationByID(ctx context.Context, id uuid.UUID) (database.InboxNotification, error) { |
| 3561 | return fetchWithAction(q.log, q.auth, policy.ActionRead, q.db.GetInboxNotificationByID)(ctx, id) |
nothing calls this directly
no test coverage detected