S3ak/golden-egg-2024-next

End-user can submit a project for an event

Opened this issue · 0 comments

S3ak commented
type Submission = {
  id: string.unique.required,
  // The name of a submission
  title: string,
  description: string;
  category: "design" | "coding" | "film production" | string;
  programme?: Programme,
  author: Author,
  fileURL: string; // URL to the submitted file
  submittedBy: User; // ID of the user who submitted the project
  submittedAt: Date;
  cohortYear: Date,
  programme: Programme
  images: Image[],
  public_link?: string().url(),
  event: Event,
}

enum Catergory {
  "Digital Art",
  "Animation",
  "Game Design",
  "Graphic Design",
  "Film and TV Production",
  "Web Design and Development",
  "Photography",
  "Visual Effects (VFX)",
  "Music Production",
  "Sound Design",
  "Design",
  "coding",
}