-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebtask.json
29 lines (29 loc) · 962 Bytes
/
webtask.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"title": "Self-Service E-mail update",
"name": "auth0-email-update",
"version": "0.2.0",
"author": "CriGoT",
"description": "Provides a simple way for database users to update their own e-mail address",
"type": "application",
"keywords": [
"auth0"
],
"codeUrl": "https://raw.githubusercontent.com/CriGoT/auth0-update-email/standalone/build/bundle.wt.js",
"secrets": {
"AUTH0_DOMAIN": {
"description": "The Auth0 tenant domain."
},
"AUTH0_CLIENT_ID":{
"description": "Client ID of the application registered in the Auth0 tenant."
},
"AUTH0_CLIENT_SECRET":{
"description": "The application secret used to validate the tokens."
},
"AUTH0_CONNECTION":{
"description": "Name of the database connections that the users belong to."
},
"AUTH0_MANAGEMENT_TOKEN": {
"description": "Token to acces the Managment API v2 with scope including read:users and update:users."
}
}
}