Aggiunge modulo Replay, Garage dev e YouTube a livello società.

Pipeline registrazione/upload con storage S3, archivio web e app, proxy replay
per il browser, OAuth YouTube sulla pagina club (Premium Full) e footer legale.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-03 07:53:11 +02:00
parent a87cda156b
commit 1f273f849d
87 changed files with 2952 additions and 195 deletions

View File

@@ -19,8 +19,10 @@ module Admin
teams_count: Team.count,
users_count: User.count,
matches_count: Match.count,
recordings_count: Recording.count,
recordings_ready: Recording.where(status: "ready").count
recordings_count: Recording.not_deleted.count,
recordings_ready: Recording.ready.count,
recordings_bytes: Recording.ready.sum(:byte_size).to_i,
recordings_expiring_soon: Recording.ready.expiring_within(7).count,
}
end
end