forked from superdesk/superdesk-client-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
superdesk.config.js
55 lines (54 loc) · 1.59 KB
/
superdesk.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
/**
* This is the default configuration file for the Superdesk application. By default,
* the app will use the file with the name "superdesk.config.js" found in the current
* working directory, but other files may also be specified using relative paths with
* the SUPERDESK_CONFIG environment variable or the grunt --config flag.
*/
module.exports = function(grunt) {
return {
defaultRoute: '/workspace',
validatorMediaMetadata: {
headline: {
required: true
},
alt_text: {
required: true
},
archive_description: {
required: false
},
description_text: {
required: true
},
copyrightholder: {
required: false
},
byline: {
required: false
},
usageterms: {
required: false
},
copyrightnotice: {
required: false
}
},
features: {
swimlane: {columnsLimit: 4},
editor3: true,
editorHighlights: true
},
auth: {google: false},
ingest: {
PROVIDER_DASHBOARD_DEFAULTS: {
show_log_messages: true,
show_ingest_count: true,
show_time: true,
log_messages: 'error',
show_status: true
},
DEFAULT_SCHEDULE: {minutes: 5, seconds: 0},
DEFAULT_IDLE_TIME: {hours: 0, minutes: 0},
}
};
};