Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
- Added vertical query param to GET /songs for correct filtering - Changed default vertical to Phish (was Goose) to avoid empty data for new users
14 lines
412 B
TypeScript
14 lines
412 B
TypeScript
export const VERTICALS = [
|
|
{ slug: "phish", name: "Phish" },
|
|
{ slug: "goose", name: "Goose" },
|
|
{ slug: "grateful-dead", name: "Grateful Dead" },
|
|
{ slug: "dead-and-company", name: "Dead & Company" },
|
|
{ slug: "billy-strings", name: "Billy Strings" },
|
|
] as const
|
|
|
|
export type VerticalSlug = typeof VERTICALS[number]["slug"]
|
|
|
|
export interface Vertical {
|
|
slug: VerticalSlug
|
|
name: string
|
|
}
|