Commit 6402e821fb4be85658c27743800f1c44c0869fb7

Authored by Suraputt Suntimitr
1 parent d360cefc
Exists in master

code etc.

.idea/misc.xml 0 → 100644
... ... @@ -0,0 +1,16 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<project version="4">
  3 + <component name="JavaScriptSettings">
  4 + <option name="languageLevel" value="ES6" />
  5 + </component>
  6 + <component name="ProjectLevelVcsManager" settingsEditedManually="false">
  7 + <OptionsSetting value="true" id="Add" />
  8 + <OptionsSetting value="true" id="Remove" />
  9 + <OptionsSetting value="true" id="Checkout" />
  10 + <OptionsSetting value="true" id="Update" />
  11 + <OptionsSetting value="true" id="Status" />
  12 + <OptionsSetting value="true" id="Edit" />
  13 + <ConfirmationsSetting value="0" id="Add" />
  14 + <ConfirmationsSetting value="0" id="Remove" />
  15 + </component>
  16 +</project>
0 17 \ No newline at end of file
... ...
.idea/modules.xml 0 → 100644
... ... @@ -0,0 +1,8 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<project version="4">
  3 + <component name="ProjectModuleManager">
  4 + <modules>
  5 + <module fileurl="file://$PROJECT_DIR$/.idea/smartrmscalendar.iml" filepath="$PROJECT_DIR$/.idea/smartrmscalendar.iml" />
  6 + </modules>
  7 + </component>
  8 +</project>
0 9 \ No newline at end of file
... ...
.idea/smartrmscalendar.iml 0 → 100644
... ... @@ -0,0 +1,12 @@
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<module type="WEB_MODULE" version="4">
  3 + <component name="NewModuleRootManager">
  4 + <content url="file://$MODULE_DIR$">
  5 + <excludeFolder url="file://$MODULE_DIR$/.tmp" />
  6 + <excludeFolder url="file://$MODULE_DIR$/temp" />
  7 + <excludeFolder url="file://$MODULE_DIR$/tmp" />
  8 + </content>
  9 + <orderEntry type="inheritedJdk" />
  10 + <orderEntry type="sourceFolder" forTests="false" />
  11 + </component>
  12 +</module>
0 13 \ No newline at end of file
... ...
common/models/events.js 0 → 100644
... ... @@ -0,0 +1,5 @@
  1 +'use strict';
  2 +
  3 +module.exports = function(Events) {
  4 +
  5 +};
... ...
common/models/events.json 0 → 100644
... ... @@ -0,0 +1,14 @@
  1 +{
  2 + "name": "events",
  3 + "plural": "events",
  4 + "base": "PersistedModel",
  5 + "idInjection": true,
  6 + "options": {
  7 + "validateUpsert": true
  8 + },
  9 + "properties": {},
  10 + "validations": [],
  11 + "relations": {},
  12 + "acls": [],
  13 + "methods": {}
  14 +}
... ...