|
@@ -57,30 +57,30 @@ file = Application(
|
57
|
57
|
main_route='/#/workspaces/{workspace_id}/contents?type=file',
|
58
|
58
|
)
|
59
|
59
|
|
60
|
|
-pagemarkdownplus = Application(
|
61
|
|
- label='Rich Markdown Files', # TODO - G.M - 24-05-2018 - Check label
|
62
|
|
- slug='contents/pagemarkdownplus',
|
|
60
|
+markdownpluspage = Application(
|
|
61
|
+ label='Markdown Plus Documents', # TODO - G.M - 24-05-2018 - Check label
|
|
62
|
+ slug='contents/markdownpluspage',
|
63
|
63
|
icon='file-code',
|
64
|
64
|
hexcolor='#f12d2d',
|
65
|
65
|
is_active=True,
|
66
|
66
|
config={},
|
67
|
|
- main_route='/#/workspaces/{workspace_id}/contents?type=pagemarkdownplus',
|
|
67
|
+ main_route='/#/workspaces/{workspace_id}/contents?type=markdownpluspage',
|
68
|
68
|
)
|
69
|
69
|
|
70
|
|
-pagehtml = Application(
|
|
70
|
+htmlpage = Application(
|
71
|
71
|
label='Text Documents', # TODO - G.M - 24-05-2018 - Check label
|
72
|
|
- slug='contents/pagehtml',
|
|
72
|
+ slug='contents/htmlpage',
|
73
|
73
|
icon='file-text-o',
|
74
|
74
|
hexcolor='#3f52e3',
|
75
|
75
|
is_active=True,
|
76
|
76
|
config={},
|
77
|
|
- main_route='/#/workspaces/{workspace_id}/contents?type=pagehtml',
|
|
77
|
+ main_route='/#/workspaces/{workspace_id}/contents?type=htmlpage',
|
78
|
78
|
)
|
79
|
79
|
# TODO - G.M - 08-06-2018 - This is hardcoded lists of app, make this dynamic.
|
80
|
80
|
# List of applications
|
81
|
81
|
applications = [
|
82
|
|
- pagehtml,
|
83
|
|
- pagemarkdownplus,
|
|
82
|
+ htmlpage,
|
|
83
|
+ markdownpluspage,
|
84
|
84
|
file,
|
85
|
85
|
thread,
|
86
|
86
|
calendar,
|