Great 
btw, I am currently trying out the self-hosted version of Strapi
so âŚ
-
there seems to be a default content-type âuserâ, I can see it in the admin panel, but I canât delete it. On the other hand there doesnât seem to be a route for it in the code like I would see for other content-types I create. What about it ? There should be a route for users to get their account data, like username, email, address and so on and also be able to edit it (using appropriate routes for it)
-
The users of my platform/webapp should not be able to use the admin / cms panel. The cms panel should not be of their concern. I would only use this panel myself to check the data the comes in. Is this possible ?
-
I want users of my platform/webapp to be able to login requesting an
/authroute for example, the server then would return a jwt token, and then the user can use the jwt token for all subsequent requests to my api. I donât need any code sample, just need to know this is possible. I normally usepassportfor this workflow. -
I Mongoose (MongoDB Driver for Nodejs) there is something called
discriminators. Discriminators are a schema inheritance mechanism. They enable you to have multiple models with overlapping schemas on top of the same underlying MongoDB collection. Again is this possible with Strapi ? I guess yes using components and dynamic zones combined ⌠right ?
Thatâs all for now ⌠I think I forgot the rest 