├── .babelrc ├── .gitignore ├── .meteor ├── .finished-upgraders ├── .gitignore ├── .id ├── packages ├── platforms ├── release └── versions ├── README.md ├── client └── main.js ├── imports ├── client │ ├── configs │ │ └── context.js │ ├── main.js │ └── modules │ │ └── core │ │ ├── actions │ │ ├── index.js │ │ └── toast.js │ │ ├── components │ │ ├── mainLayout.js │ │ ├── toast.js │ │ └── view_home.js │ │ ├── containers │ │ ├── mainLayout.js │ │ ├── toast.js │ │ └── view_home.js │ │ ├── index.js │ │ ├── reducers │ │ ├── core.js │ │ └── index.js │ │ └── routes.js ├── lib │ └── collections.js └── server │ ├── api │ ├── destination │ │ └── schema.js │ ├── mediaGallery │ │ └── schema.js │ ├── poi │ │ └── schema.js │ └── schema.js │ └── main.js ├── package.json └── server └── main.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "meteor" ] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | settings.json 3 | startup.sh 4 | .idea/ -------------------------------------------------------------------------------- /.meteor/.finished-upgraders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/.meteor/.finished-upgraders -------------------------------------------------------------------------------- /.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /.meteor/.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/.meteor/.id -------------------------------------------------------------------------------- /.meteor/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/.meteor/packages -------------------------------------------------------------------------------- /.meteor/platforms: -------------------------------------------------------------------------------- 1 | server 2 | browser 3 | -------------------------------------------------------------------------------- /.meteor/release: -------------------------------------------------------------------------------- 1 | METEOR@1.4.1.1 2 | -------------------------------------------------------------------------------- /.meteor/versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/.meteor/versions -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/README.md -------------------------------------------------------------------------------- /client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/client/main.js -------------------------------------------------------------------------------- /imports/client/configs/context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/configs/context.js -------------------------------------------------------------------------------- /imports/client/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/main.js -------------------------------------------------------------------------------- /imports/client/modules/core/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/actions/index.js -------------------------------------------------------------------------------- /imports/client/modules/core/actions/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/actions/toast.js -------------------------------------------------------------------------------- /imports/client/modules/core/components/mainLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/components/mainLayout.js -------------------------------------------------------------------------------- /imports/client/modules/core/components/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/components/toast.js -------------------------------------------------------------------------------- /imports/client/modules/core/components/view_home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/components/view_home.js -------------------------------------------------------------------------------- /imports/client/modules/core/containers/mainLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/containers/mainLayout.js -------------------------------------------------------------------------------- /imports/client/modules/core/containers/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/containers/toast.js -------------------------------------------------------------------------------- /imports/client/modules/core/containers/view_home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/containers/view_home.js -------------------------------------------------------------------------------- /imports/client/modules/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/index.js -------------------------------------------------------------------------------- /imports/client/modules/core/reducers/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/reducers/core.js -------------------------------------------------------------------------------- /imports/client/modules/core/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/reducers/index.js -------------------------------------------------------------------------------- /imports/client/modules/core/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/client/modules/core/routes.js -------------------------------------------------------------------------------- /imports/lib/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/lib/collections.js -------------------------------------------------------------------------------- /imports/server/api/destination/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/server/api/destination/schema.js -------------------------------------------------------------------------------- /imports/server/api/mediaGallery/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/server/api/mediaGallery/schema.js -------------------------------------------------------------------------------- /imports/server/api/poi/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/server/api/poi/schema.js -------------------------------------------------------------------------------- /imports/server/api/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/server/api/schema.js -------------------------------------------------------------------------------- /imports/server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/imports/server/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/package.json -------------------------------------------------------------------------------- /server/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payner35/reduxToast/HEAD/server/main.js --------------------------------------------------------------------------------