-
Notifications
You must be signed in to change notification settings - Fork 80
/
webtask.json
80 lines (80 loc) · 2.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"title": "Delegated Administration Dashboard",
"name": "auth0-delegated-admin",
"version": "4.4.0",
"author": "auth0",
"useHashName": false,
"description": "This extension allows non-dashboard administrators to manage (a subset of) users.",
"type": "application",
"category": "end_user",
"logoUrl": "https://cdn.auth0.com/extensions/auth0-delegated-admin/assets/logo.svg",
"initialUrlPath": "/",
"docsUrl": "https://auth0.com/docs/extensions/delegated-admin",
"repository": "https://github.com/auth0-extensions/auth0-delegated-administration-extension",
"keywords": [
"auth0",
"extension"
],
"auth0": {
"createClient": true,
"onUninstallPath": "/.extensions/on-uninstall",
"scopes": "read:clients delete:clients read:connections read:users update:users delete:users create:users read:logs read:device_credentials update:device_credentials delete:device_credentials delete:guardian_enrollments"
},
"secrets": {
"EXTENSION_CLIENT_ID": {
"description": "Client ID of the application you created in the Auth0 Dashboard",
"required": true
},
"TITLE": {
"description": "Custom title for the dashboard",
"example": "Fabrikam User Management",
"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
},
"FAVICON_PATH": {
"description": "Path to custom favicon",
"example": "https://cdn.fabrikam.com/static/extensions/theme/favicon.png",
"required": false
},
"AUTH0_CUSTOM_DOMAIN": {
"description": "Custom domain",
"example": "example.com",
"required": false
},
"USER_SEARCH_ENGINE": {
"description": "User search engine. Cloud only supports V3",
"type": "select",
"default": "v3",
"allowMultiple": false,
"options": [
{
"value": "v3",
"text": "v3"
},
{
"value": "v2",
"text": "v2"
}
]
},
"FEDERATED_LOGOUT": {
"description": "Also sign out from the IDP when users logout?",
"type": "select",
"allowMultiple": false,
"options": [
{
"value": "false",
"text": "No"
},
{
"value": "true",
"text": "Yes"
}
]
}
}
}