-
-
Notifications
You must be signed in to change notification settings - Fork 121
[FEATURE] A question submission box (backend) #108
Comments
The first step for this task: design the database schema. |
I'm going to start working on this one soon. |
I'm going to un-assign myself since I'll be away - in case anyone else wants to take it. I'll assign myself when I start working on it again. |
From my own comment on #59: The required fields:
|
A rough plan for this feature:
This whole process may seem a bit complicated, but I think this is the right way to do it to make it as secure as possible. I've even thought about switching to Firebase because it's complicated, but the workflow with it would be essentially the same. There may be other ways of going about it (e.g., using row level security / RLS), but the above approach should be the simplest one. I'll document everything as I go here. |
Documentation references: (Extra - thinking of sending a PR to update the Supabase doc here once I'm done with this whole process) |
|
|
update: verified that next step: set up a Next.js API and send it there. |
note: the current user can be retrieved with |
I'm going to unassign myself for now to work on #122 first. |
I can pick the work from here |
@iShibi sure! That'd be great. |
reference: supabase insert |
note on supabase service role: supabase/supabase#1284 |
After some more digging, I found that Supabase has a Next.js auth component - I'll look into this one next: https://github.com/supabase/auth-helpers/blob/main/packages/nextjs/README.md |
I thought this might work, but it doesn't quite work the way it's described in the doc. |
This one worked! |
Note: I'm currently checking this example to see how they solved it. |
I've found this comment to be helpful, too. |
I wrote an SQL query to generate the above table automatically if anyone here doesn't want to do it manually every time. Just go to the SQL Editor tab in supabase and run the query. If you find any mistake in the query below, please let me know. -- Create a table for Public Questions
create table questions (
id bigint generated by default as identity primary key,
created_at timestamp with time zone default timezone('utc'::text, now()) not null,
created_by uuid references auth.users(id) not null,
company text,
location text,
asked_date date,
question text,
question_details text,
stay_anonymous boolean,
is_approved boolean,
position text
); |
update: I'll be working off of this draft PR |
Description
This is the backend portion of #59.
The text was updated successfully, but these errors were encountered: