Sergii Onufriienko

Results 21 comments of Sergii Onufriienko

Hi @anthlasserre Personally, I think authorization with login and password is a step back. Alternative can be a [WebAuth](https://developer.mozilla.org/en-US/docs/Web/API/Web_Authentication_API) to authorize by finger, face, USB key or SMS. Also you...

What authorization method should we choose for customer login? 1. sign in with email (passwordless) 2. sign in with Google/Facebook 3. sign in with email + password 4. SMS I...

@restmount Where is store.cezerin.com located? AWS, DO ...?

@Michaeldrm I also have this issue. Fixed by loading fewer fields. https://github.com/cezerin/cezerin/blob/bb72aa1be6269f3563b6bb2b4b8e9b322f33ad59/src/store/server/loadState.js#L19 Something like this: ```js const CATEGORIES_FIELDS = 'slug,name,parent_id,id'; ``` If you don't need to render categories as a...

@Michaeldrm I think the dashboard should be optimized to fetch fewer fields for categories (id, parent_id, name). Now dashboard fetching all category fields.

@ceracera Adding multilingual to Cezerin will take around 1-2 month roughly. Multilingual is a pretty complex task. Mostly for UI. Language switchers everywhere. I think the current goal should be...

@ceracera Steps for the multilingual task 1. Design database schema 2. Modify API to accept language in the header 3. Modify API to work with right locale 4. Add language...