Memories of Africa Treasures — Admin Orders

← Back to Store
One-time Supabase setup required: create an admin user in Supabase Authentication, then add authenticated SELECT and UPDATE policies for the orders table. The SQL is shown below.
Show SQL
create policy "Authenticated users can view orders"
on orders for select
to authenticated
using (true);

create policy "Authenticated users can update orders"
on orders for update
to authenticated
using (true)
with check (true);

Admin Sign In

Use the email and password of the Supabase Authentication user you create for yourself.