-
Notifications
You must be signed in to change notification settings - Fork 36
/
webtask.json
63 lines (63 loc) · 1.95 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"title": "SSO Dashboard",
"name": "auth0-sso-dashboard",
"version": "2.4.1",
"preVersion": "2.2.1",
"author": "Auth0",
"useHashName": false,
"description": "This extension provides your users with a dashboard for all of their applications.",
"type": "application",
"category": "end_user",
"logoUrl": "https://cdn.auth0.com/extensions/auth0-sso-dashboard/assets/logo.svg",
"initialUrlPath": "/admins/login",
"repository": "https://github.com/auth0-extensions/auth0-sso-dashboard-extension",
"keywords": [
"auth0",
"extension"
],
"auth0": {
"createClient": true,
"onUninstallPath": "/.extensions/on-uninstall",
"onInstallPath": "/.extensions/on-install",
"onUpdatePath": "/.extensions/on-update",
"scopes": "read:clients delete:clients read:connections read:resource_servers create:resource_servers read:client_grants create:client_grants delete:client_grants"
},
"secrets": {
"EXTENSION_CLIENT_ID": {
"description": "Client ID of the application you created in the Auth0 Management Dashboard",
"required": true
},
"TITLE": {
"description": "Custom title for the dashboard",
"example": "Fabrikam SSO Dashboard",
"required": false
},
"CUSTOM_CSS": {
"description": "A CSS file containing custom styles for the extension",
"example": "https://cdn.fabrikam.com/static/extensions/theme/fabrikam.css",
"required": false
},
"AUTH0_CUSTOM_DOMAIN": {
"description": "Custom domain",
"example": "example.com",
"required": false,
"former": "AUTH0_ISSUER_DOMAIN"
},
"ALLOW_AUTHZ": {
"description": "Allow enabling of Authorization Extension integration (Deprecated)",
"type": "select",
"allowMultiple": false,
"default": "false",
"options": [
{
"value": "false",
"text": "No"
},
{
"value": "true",
"text": "Yes"
}
]
}
}
}