feat: Added avaliable tags and tag column to table
Coauthored-by: gk1623
This commit is contained in:
@@ -3,3 +3,25 @@ import type { Database } from "./database.d.ts";
|
||||
export type Table<T extends keyof Database["public"]["Tables"]> =
|
||||
Database["public"]["Tables"][T]["Row"];
|
||||
export type Enum<T extends keyof Database["public"]["Enums"]> = Database["public"]["Enums"][T];
|
||||
|
||||
export const availableStudySpaceTags = [
|
||||
"Quiet",
|
||||
"Loud",
|
||||
"Silent",
|
||||
"Group study",
|
||||
"Individual study",
|
||||
"Power outlets",
|
||||
"No power outlets",
|
||||
"24/7",
|
||||
"Food allowed",
|
||||
"No food allowed",
|
||||
"Good wifi",
|
||||
"Bad wifi",
|
||||
"No wifi",
|
||||
"Whiteboard",
|
||||
"Restricted access",
|
||||
"Hot",
|
||||
"Air conditioned",
|
||||
"Cold",
|
||||
"Cringe"
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user