Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
1plam committed Jun 15, 2023
1 parent 0065bab commit fc5ade2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,9 @@ public Task<IEnumerable<Employee>> GetAllAsync(CancellationToken cancellationTok

The workflow itself focuses on the authentication process and the interaction with an external APIs of the application.

The `Employee` initiates the process by sending a request to the `OcelotAPIGateway`, which then routes the request to `Auth0` for authentication. Depending on whether it's a registration or login workflow, `Auth0` registers or logs in the employee, and the `OcelotAPIGateway` responds to the `Employee` with a success message or an error. Once authenticated, the `Employee` can send requests to the external application APIs through the `OcelotAPIGateway`, which forwards the requests and returns the responses back to the `Employee`.
The `Employee` initiates the process by sending a request to the `OcelotAPIGateway`, which then routes the request to `Auth0` for authentication. Depending on whether it's a registration or login workflow, `Auth0` registers or logs in the employee, and the `OcelotAPIGateway` responds to the `Employee` with a success message or an error.

Once authenticated, the `Employee` can send requests to the external application APIs through the `OcelotAPIGateway`, which forwards the requests and returns the responses back to the `Employee`.

```mermaid
sequenceDiagram
Expand Down

0 comments on commit fc5ade2

Please sign in to comment.