fediversion/frontend/config/verticals.ts
fullsizemalt 5b8cfffcf9
Some checks failed
Deploy Fediversion / deploy (push) Failing after 1s
fix: Songs API filtering and default vertical
- Added vertical query param to GET /songs for correct filtering
- Changed default vertical to Phish (was Goose) to avoid empty data for new users
2025-12-29 00:03:56 -08:00

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
}