forked from apostrophecms/apostrophe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
defaults.js
54 lines (54 loc) · 1.61 KB
/
defaults.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
module.exports = {
modules: {
'apostrophe-utils': {},
'apostrophe-tasks': {},
'apostrophe-launder': {},
'apostrophe-i18n': {},
'apostrophe-db': {},
'apostrophe-locks': {},
'apostrophe-caches': {},
'apostrophe-migrations': {},
'apostrophe-express': {},
'apostrophe-urls': {},
'apostrophe-templates': {},
'apostrophe-email': {},
'apostrophe-push': {},
'apostrophe-permissions': {},
'apostrophe-assets': {},
'apostrophe-admin-bar': {},
'apostrophe-login': {},
'apostrophe-notifications': {},
'apostrophe-browser-utils': {},
'apostrophe-ui': {},
'apostrophe-schemas': {},
'apostrophe-docs': {},
'apostrophe-jobs': {},
'apostrophe-versions': {},
'apostrophe-tags': {},
'apostrophe-modal': {},
'apostrophe-attachments': {},
'apostrophe-oembed': {},
'apostrophe-pager': {},
// global comes first so it can register a doc type manager and clean things up before
// pages claims any orphan page types
'apostrophe-global': {},
'apostrophe-polymorphic-manager': {},
'apostrophe-pages': {},
'apostrophe-search': {},
'apostrophe-any-page-manager': {},
'apostrophe-areas': {},
'apostrophe-rich-text-widgets': {},
'apostrophe-html-widgets': {},
'apostrophe-video-fields': {},
'apostrophe-video-widgets': {},
'apostrophe-groups': {},
'apostrophe-users': {},
'apostrophe-images': {},
'apostrophe-images-widgets': {},
'apostrophe-files': {},
'apostrophe-files-widgets': {},
'apostrophe-soft-redirects': {},
// ALWAYS LAST FOREVER
'apostrophe-service-bridge': {}
}
};