0fd0279543
* Adding some recurring lemmy tasks. - Add active users by day, week, month, and half year to site and community. Fixes #1195 - Periodically re-index the aggregates tables that use hot_rank. Fixes #1384 - Clear out old activities (> 6 months). Fixes #1133 * Some cleanup, recalculating actives every hour.
6 lines
133 B
Rust
6 lines
133 B
Rust
#![recursion_limit = "512"]
|
|
#[macro_use]
|
|
extern crate lazy_static;
|
|
pub mod code_migrations;
|
|
pub mod routes;
|
|
pub mod scheduled_tasks;
|