Authentication

Checks a user's login and password, and returns their auth token.

Flow Connections

  • [Input] In - starts the block's execution.

  • [Output] Out - activates when the block has finished its execution.

Data Connections

  • [Input] Login (email) - email of the user used as login.

  • [Input] Password (password) - encrypted password of the user.

  • [Output] User (model) - user model object stored in the database.

  • [Output] Token (string) - Bearer token of the user. Used to authenticate the user in the application API.

Last updated