Forest Admin Authorization/Authentication

Problem

We plan to integrate with the Forest Admin. We’re building the digital banking app so security has the highest priority.

Questions

  1. Could you describe how the authorization and authentication process is implemented?
  2. Where credentials and permissions are stored?
  3. Can we override the routes with API calls instead of database-based views?

Context

Our requirements regarding authorization are :

  1. Credentials (usernames and passwords) are stored on our servers. Credentials are never exposed to external services (ie. Forestadmin’s servers).
  2. When users are authenticated, credentials are sent from the client app (web browser) to our servers, which issue tokens (if credentials are valid). Tokens are JWT tokens signed with private keys stored on our servers.
  3. Tokens are stored by the client app and are later passed with every request to endpoints serving views and smart actions. Endpoints verify tokens before requests are served (verifications check signature and credentials stored in token).

Remarks regarding custom routes and API calls: our business logic is implemented in code, not in a database. It is impossible to enforce this logic in the database. It is also impossible to infer views and actions (that should be available through the Forestadmin panel) based on the database schema. We need (and are willing to) to provide dedicated endpoints that describe views and actions for the Forestadmin panel, as well as provide actual data to be shown in the panel. These endpoints would take care of authorization (ie. verification of tokens described above).

Kind regards
Michal Grzelak
Head of Product at pawaBank
https://www.pawabank.com/

Hi @Michal_Grzelak ! I replied to your questions via email. Speak to you there :slight_smile: