Sebastian Franco

Results 6 comments of Sebastian Franco

Sure, I think we can add some fields: `is_active: bool = True and is_verified: bool = False` I'm using those fields to validate if the user is active and if...

For those with this problem. I changed the goofys mounter options https://github.com/ctrox/csi-s3/blob/master/pkg/mounter/goofys.go#L57 changed the permissions as needed and then create my own image.

Hi @AnumSheraz After creating the new image you have to modify the files csi-s3.yaml and provisioner.yaml 1. Change the image of the DaemonSet defined in csi-s3.yaml. 2. Change the image...

I saw it also but it didn't work for me. That's why I changed the image.

For those who has this problem, for now I am using this function helper so I can emulate RLS for supabase. ```js import { type Session } from "@supabase/supabase-js" import...

what about ? ```typescript const model = await this.db.drizzle .insert(schema.user) .values({ authCode, ...userDto, password: hashSync(userDto.password, 10), }) .returning() .then((res) => res[0] ?? null) return model ```