add song reporting

This commit is contained in:
2026-03-15 22:23:11 +01:00
parent e4f829d0c8
commit 67884e4638
24 changed files with 644 additions and 36 deletions

View File

@@ -1,6 +1,7 @@
import {Timestamp} from '@angular/fire/firestore';
export type PresentationBackground = 'none' | 'blue' | 'green' | 'leder' | 'praise' | 'bible';
export type ReportedType = null | 'pending' | 'reported' | 'not-required';
export interface Show {
id: string;
@@ -9,7 +10,7 @@ export interface Show {
owner: string;
songIds?: string[];
public: boolean;
reported: boolean;
reportedType: ReportedType;
published: boolean;
archived: boolean;
order: string[];