Johan Eliasson

Results 168 comments of Johan Eliasson

> Personally I see refresh tokens from auth providers same as passwords They are not the same as passwords because you give granular access to the service (e.g. Google). By...

Maybe we should encrypt the tokens to prevent them from being used in case they are leaked/hacked from the database. The tokens can then be decrypted using a key we...

> Can I ask why the oauth refresh tokens are stored anyway currently? So your app can act on behalf of the user for that system. Hasura Auth's default scopes...

Just to be clear: The default scopes with Hasura Auth is **READ ACCESS ONLY**. I still think we should consider encrypting the tokens for OAuth providers.

Duplicate of https://github.com/Code-Pop/Intro-to-Vue-3/pull/4

Same issue here. I added the column via SQL instead. ```sql ALTER TABLE "users" ADD COLUMN "name" text NOT NULL DEFAULT ''; ```

What is the problem to do the following? - if default value text box is empty, the default value will be empty (i.e `''`).

Here is some inspiration from how phpmyadmin handles it: ![image](https://user-images.githubusercontent.com/331818/63576143-dff4d000-c58b-11e9-9692-43c74cc478eb.png) ------ ![image](https://user-images.githubusercontent.com/331818/63576221-06b30680-c58c-11e9-97ff-55af5f875d34.png) ------ ![image](https://user-images.githubusercontent.com/331818/63576198-fef36200-c58b-11e9-9edd-5220e07ae478.png) Very intuitive I think.