CheckInactiveUsers function updates status of inactive users from active to dormant using default parameters.
(ctx context.Context, logger slog.Logger, clk quartz.Clock, db database.Store, auditor audit.Auditor)
| 25 | // CheckInactiveUsers function updates status of inactive users from active to dormant |
| 26 | // using default parameters. |
| 27 | func CheckInactiveUsers(ctx context.Context, logger slog.Logger, clk quartz.Clock, db database.Store, auditor audit.Auditor) func() { |
| 28 | return CheckInactiveUsersWithOptions(ctx, logger, clk, db, auditor, jobInterval, accountDormancyPeriod) |
| 29 | } |
| 30 | |
| 31 | // CheckInactiveUsersWithOptions function updates status of inactive users from active to dormant |
| 32 | // using provided parameters. |
no test coverage detected