darlanjunior

Results 3 comments of darlanjunior

Just to let you know, what we did to solve this is to force the OTP (confirmation_token) to be 123456 and the confirmation_sent_at to be now() in a trigger. Of...

``` CREATE OR REPLACE FUNCTION auth.force_otp() RETURNS trigger LANGUAGE plpgsql AS $function$BEGIN NEW.confirmation_token := 123456; NEW.confirmation_sent_at := now(); return new; END;$function$ ; create trigger force_otp before update on auth.users for...

You need to run `npm run dist` instead