- Integrate Ahoy gem for tracking user events and visits - Create models for Ahoy events and visits - Implement admin interfaces for managing events and visits - Add background job for cleaning up old analytics data - Update application controller and other relevant controllers to track specific actions This commit implements a comprehensive event tracking system that logs user interactions within the application. Additionally, it includes mechanisms for managing and cleaning historical visit and event data, ensuring efficient data handling.
18 lines
394 B
YAML
18 lines
394 B
YAML
batch_generate_weather:
|
|
cron: '0 */1 * * *'
|
|
class: BatchGenerateWeatherArtsWorker
|
|
description: "Generate weather arts every 2 hours"
|
|
enabled: true
|
|
|
|
refresh_sitemap:
|
|
cron: '0 5 * * *'
|
|
class: RefreshSitemapWorker
|
|
queue: default
|
|
description: "Refresh sitemap daily"
|
|
enabled: true
|
|
|
|
clean_ahoy_data:
|
|
cron: '0 0 * * 0'
|
|
class: CleanAhoyDataWorker
|
|
queue: default
|
|
enabled: true |