Merge branch 'feat/directions' into 'master'

feat: Added feature to allow users to give directions for study spaces. These...

See merge request gk1623/drp-48!24

Co-authored-by: TadiosT <tadios.temesgen@gmail.com>
This commit is contained in:
Caspar Jojo Asaam
2025-06-13 12:48:49 +00:00
7 changed files with 20 additions and 0 deletions

View File

@@ -26,6 +26,7 @@
const { error: feedbackUpload } = await supabase
.from("study_spaces")
.update({
directions: newStudySpaceData.directions,
volume: newStudySpaceData.volume,
wifi: newStudySpaceData.wifi,
power: newStudySpaceData.power,

View File

@@ -145,6 +145,7 @@ export type Database = {
building_location_old: string | null
created_at: string | null
description: string | null
directions: string
id: string
location: string | null
power: string
@@ -158,6 +159,7 @@ export type Database = {
building_location_old?: string | null
created_at?: string | null
description?: string | null
directions: string
id?: string
location?: string | null
power: string
@@ -171,6 +173,7 @@ export type Database = {
building_location_old?: string | null
created_at?: string | null
description?: string | null
directions: string
id?: string
location?: string | null
power?: string