Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace rules section with actions #31

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ Auth0 helps you to:
* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.
* Add authentication through more traditional **[username/password databases](https://docs.auth0.com/mysql-connection-tutorial)**.
* Add support for **[linking different user accounts](https://docs.auth0.com/link-accounts)** with the same user.
* Support for generating signed [Json Web Tokens](https://docs.auth0.com/jwt) to call your APIs and **flow the user identity** securely.
* Support for generating signed [Json Web Tokens](https://auth0.com/docs/secure/tokens/json-web-tokens) to call your APIs and **flow the user identity** securely.
* Analytics of how, when and where users are logging in.
* Pull data from other sources and add it to the user profile, through [JavaScript rules](https://docs.auth0.com/rules).
* Pull data from other sources and add it to the user profile, through [JavaScript actions](https://auth0.com/docs/customize/actions).

## Create a free Auth0 account

Expand Down
4 changes: 2 additions & 2 deletions mvc-login/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ Auth0 helps you to:
* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.
* Add authentication through more traditional **[username/password databases](https://docs.auth0.com/mysql-connection-tutorial)**.
* Add support for **[linking different user accounts](https://docs.auth0.com/link-accounts)** with the same user.
* Support for generating signed [Json Web Tokens](https://docs.auth0.com/jwt) to call your APIs and **flow the user identity** securely.
* Support for generating signed [Json Web Tokens](https://auth0.com/docs/secure/tokens/json-web-tokens) to call your APIs and **flow the user identity** securely.
* Analytics of how, when and where users are logging in.
* Pull data from other sources and add it to the user profile, through [JavaScript rules](https://docs.auth0.com/rules).
* Pull data from other sources and add it to the user profile, through [JavaScript actions](https://auth0.com/docs/customize/actions).

## Create a free account in Auth0

Expand Down
6 changes: 3 additions & 3 deletions mvc-login/src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ <h6 class="mb-3">

<div class="col-md-5 mb-4">
<h6 class="mb-3">
<a href="https://auth0.com/docs/rules">
<i class="fas fa-link mr-2"> Learn About Rules</i>
<a href="https://auth0.com/docs/customize/actions">
<i class="fas fa-link mr-2"> Learn About Actions</i>
</a>
</h6>
<p>Rules are JavaScript functions that execute when a user authenticates to your application. They run once the authentication process is complete, and you can use them to customize and extend Auth0's capabilities.</p>
<p>Actions are secure, tenant-specific, versioned functions written in Node.js that execute at certain points within the Auth0 platform. They run once the authentication process is complete, and you can use them to customize and extend Auth0's capabilities.</p>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions webflux-login/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ Auth0 helps you to:
* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.
* Add authentication through more traditional **[username/password databases](https://docs.auth0.com/mysql-connection-tutorial)**.
* Add support for **[linking different user accounts](https://docs.auth0.com/link-accounts)** with the same user.
* Support for generating signed [Json Web Tokens](https://docs.auth0.com/jwt) to call your APIs and **flow the user identity** securely.
* Support for generating signed [Json Web Tokens](https://auth0.com/docs/secure/tokens/json-web-tokens) to call your APIs and **flow the user identity** securely.
* Analytics of how, when and where users are logging in.
* Pull data from other sources and add it to the user profile, through [JavaScript rules](https://docs.auth0.com/rules).
* Pull data from other sources and add it to the user profile, through [JavaScript actions](https://auth0.com/docs/customize/actions).

## Create a free account in Auth0

Expand Down
6 changes: 3 additions & 3 deletions webflux-login/src/main/resources/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ <h6 class="mb-3">

<div class="col-md-5 mb-4">
<h6 class="mb-3">
<a href="https://auth0.com/docs/rules">
<i class="fas fa-link mr-2"> Learn About Rules</i>
<a href="https://auth0.com/docs/customize/actions">
<i class="fas fa-link mr-2"> Learn About Actions</i>
</a>
</h6>
<p>Rules are JavaScript functions that execute when a user authenticates to your application. They run once the authentication process is complete, and you can use them to customize and extend Auth0's capabilities.</p>
<p>Actions are secure, tenant-specific, versioned functions written in Node.js that execute at certain points within the Auth0 platform. They run once the authentication process is complete, and you can use them to customize and extend Auth0's capabilities.</p>
</div>
</div>
</div>
Expand Down