SupabaseS
Supabase12mo ago
shaq

what metadata is for email auth

for email authentication what metadata is shown, i want to create a function but the following is for github authentication

    INSERT INTO public.users (id,display_name,avatar_url)
    VALUES (
      NEW.id,
      new.raw_user_meta_data ->>'user_name',
      new.raw_user_meta_data ->>'avatar_url'
    );

    RETURN NEW;
END;


what metadata do i use for email authentictation
Was this page helpful?