-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.js
58 lines (57 loc) · 1.61 KB
/
config.js
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
const extension_name = "dwaring87-publish-node";
const collection_name = "dwaring87_publish_node";
module.exports = {
"extension": extension_name,
"collection": {
"collection": collection_name,
"meta": {
"collection": collection_name,
"icon": "cloud_upload",
"note": "Configuration settings for the " + extension_name + " extension",
"hidden": true
},
"schema": {}
},
"fields": [
{
"field": "site",
"type": "integer"
},
{
"field": "key",
"type": "string"
},
{
"field": "value",
"type": "string"
}
],
"keys": {
"id": "site-id",
"name": "site-name",
"path": "site-path",
"command": "site-command",
"url": "site-url",
"env": "site-env",
"status": "build-status",
"log": "build-log",
"timestamp": "build-timestamp",
"activity": "build-activity"
},
"statuses": {
"created": "Created - Not Published",
"started": "Building...",
"failed": "Build Failed - See Log for details",
"completed": "Published"
},
"activityFilter": {
"action": {
"_neq": "login"
},
"collection": {
"_nin": [collection_name, "directus_dashboards", "directus_folders", "directus_migrations", "directus_panels", "directus_sessions", "directus_settings", "directus_webhooks"]
}
},
"allow_concurrent_builds": false,
"extension_path_env_var": "DIRECTUS_EXTENSIONS_PATH"
}