TejasNasre / nexmeet

Your Next Meetup Platform.
https://nexmeet-lake.vercel.app/
Apache License 2.0
16 stars 32 forks source link

Implementation For Request Booking At Event Space #49

Open TejasNasre opened 6 days ago

TejasNasre commented 6 days ago

We have event space at dashboard then explore events and under that request booking for the space i made the schema for supabase check LEARN.md you just need to make the form and run insert query on it.

Make PR to dev and post video before make PR

rudrapratap63 commented 6 days ago

@TejasNasre Please Assign this issue to me so I'll start by creating the form and running the insert query as mentioned.

rudrapratap63 commented 6 days ago

@TejasNasre Just to confirm, what do you mean by "Make PR to dev and post video before make PR"? Are you referring to recording a video walkthrough of the changes before submitting the PR? Please let me know so I can follow the correct process.

TejasNasre commented 5 days ago

Yeah recording the walkthrough video and make PR with mine dev branch don't request merge with main

rudrapratap63 commented 5 days ago

@TejasNasre Ok sir I will try to do my best.

TejasNasre commented 3 days ago

@rudrapratap63 any updates ?

rudrapratap63 commented 3 days ago

@TejasNasre, work in progress. Today, I will send the PR to the dev branch and also add a video walkthrough of my work

rudrapratap63 commented 3 days ago

image

@TejasNasre, for confirmation, when the user clicks the Request Booking button, they will be redirected to a new form page where the form will have the following inputs:

There will also be a Submit Request button. When the user clicks the Submit Request button, we will run the insert query on it.

TejasNasre commented 3 days ago

Yes, it's easy make sure to make backend architecture correct and the next page should redirect by I'd take reference from event registration

rudrapratap63 commented 3 days ago

@TejasNasre I think in your learn.md documentation there is two typo error so can you please check this . image instead of this :

 constraint event_space_img - vid_pkey primary key (id),
 constraint event_space_img - vid_event_space_id_fkey foreign key (event_space_id) references event_space (id)

it should be like this:

constraint event_space_img_vid_pkey primary key (id),
 constraint event_space_img_vid_event_space_id_fkey foreign key (event_space_id) references event_space (id)
rudrapratap63 commented 3 days ago

@TejasNasre, when the user clicks the Submit Request button, where should we redirect the user: to the explore-events page or the home page?

TejasNasre commented 2 days ago

@TejasNasre, when the user clicks the Submit Request button, where should we redirect the user: to the explore-events page or the home page?

Redirect to dashboard

rudrapratap63 commented 2 days ago

Ok I will change and redirect to the dashboard

rudrapratap63 commented 2 days ago

@TejasNasre , please check the PR. I have now redirected the user to the dashboard when they click the request-booking button.