mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 11:19:12 +01:00
* feat: add everyone group through seed * feat: add reserved group name check in group router actions * feat: improve user interface for everyone group * fix: reserved group alert is a server component * feat: add all users to everyone group * chore: update lockfile * fix: format issues * fix: lint issues * fix: lint format issues * test: add unit tests for everyone group * refactor: add codegen for documentation urls by sitemap * refactor: change group query to count * chore: remove migrations temporarily * chore: add migrations again * chore: add lint rule to prevent usage of raw documentation links * fix: format issues
11 lines
363 B
TypeScript
11 lines
363 B
TypeScript
// This import has to be the first import in the file so that the agent is overridden before any other modules are imported.
|
|
import "./undici-log-agent-override";
|
|
|
|
import { registerCronJobRunner } from "@homarr/cron-job-runner";
|
|
import { jobGroup } from "@homarr/cron-jobs";
|
|
|
|
void (async () => {
|
|
registerCronJobRunner();
|
|
await jobGroup.startAllAsync();
|
|
})();
|