Add user and page statistics, add sitemap and robots.txt generation

This commit is contained in:
2024-11-27 17:07:32 +01:00
parent 5fb708051b
commit e99a5f15b4
26 changed files with 520 additions and 81 deletions

2
types/auth.d.ts vendored
View File

@@ -31,6 +31,8 @@ export interface UserRawData {
export interface UserExtendedData {
signin: Date;
lastTimestamp: Date;
logCount: number;
}
export type Permissions = { permissions: string[] };