├── .gitignore ├── LICENSE ├── README.md ├── assets ├── Book Later Popover.png ├── Book Now Popover.png ├── Main.png ├── Popover.png ├── app_logo.png ├── logo │ ├── Slack_Mark_Web.png │ ├── estimote-logo-square.de0bd239.png │ └── slack_rgb.png └── slackbooking.sketch ├── client ├── .csslintrc ├── .eslintrc ├── .npmignore ├── README.md ├── app │ ├── common │ │ ├── img │ │ │ ├── app_logo.png │ │ │ ├── large.png │ │ │ ├── medium.png │ │ │ ├── slack-login.png │ │ │ └── small.png │ │ ├── index.js │ │ ├── libs │ │ │ ├── index.js │ │ │ └── ng-cordova-beacon.js │ │ └── util │ │ │ ├── index.js │ │ │ └── services │ │ │ └── $exceptionHandler.js │ ├── entry-template.html │ ├── home │ │ ├── bookingModal.html │ │ ├── home.controller.js │ │ ├── home.html │ │ ├── index.js │ │ ├── room.service.js │ │ ├── states.js │ │ └── style.scss │ ├── index.js │ ├── layout.html │ ├── states.js │ ├── style.scss │ └── variable.scss ├── config.xml ├── gulpfile.js ├── hooks │ ├── README.md │ └── after_prepare │ │ └── 010_add_platform_class.js ├── package.json ├── plugins │ ├── android.json │ ├── cordova-plugin-transport-security │ │ ├── README.md │ │ ├── package.json │ │ └── plugin.xml │ ├── fetch.json │ └── ios.json ├── res │ ├── icon │ │ └── icon.png │ └── screen │ │ ├── android │ │ ├── screen-hdpi-portrait.png │ │ ├── screen-ldpi-portrait.png │ │ ├── screen-mdpi-portrait.png │ │ └── screen-xhdpi-portrait.png │ │ ├── ios │ │ ├── Default-667h.png │ │ ├── Default-736h.png │ │ ├── Default-Portrait@2x~ipad.png │ │ ├── screen-ipad-portrait-2x.png │ │ ├── screen-ipad-portrait.png │ │ ├── screen-iphone-portrait-2x.png │ │ ├── screen-iphone-portrait-568h-2x.png │ │ └── screen-iphone-portrait.png │ │ └── screen.png ├── webpack.config.js └── www │ ├── app.js │ ├── app.js.map │ ├── font │ ├── 05acfdb568b3df49ad31355b19495d4a.woff │ ├── 24712f6c47821394fba7942fbb52c3b2.ttf │ ├── 2c2ae068be3b089e0a5b59abb1831550.eot │ └── 621bd386841f74e0053cb8e67f8a0604.svg │ ├── img │ ├── 4021dd335fcfb21c9b3623ba15f532a3.png │ ├── 9b9c0c8a6872708ff7e672eb67fd5ea0.png │ └── f48708d60d03f89e15f391d2938d6ee3.png │ └── index.html ├── package.json └── server ├── README.md ├── package.json └── src ├── index.js ├── models ├── bookings.js └── rooms.js ├── plugins ├── bookings │ ├── bookings.js │ └── index.js ├── rooms │ ├── index.js │ └── rooms.js └── slack │ ├── index.js │ └── slack.js └── services └── slack.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/README.md -------------------------------------------------------------------------------- /assets/Book Later Popover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/assets/Book Later Popover.png -------------------------------------------------------------------------------- /assets/Book Now Popover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/assets/Book Now Popover.png -------------------------------------------------------------------------------- /assets/Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/assets/Main.png -------------------------------------------------------------------------------- /assets/Popover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/assets/Popover.png -------------------------------------------------------------------------------- /assets/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/assets/app_logo.png -------------------------------------------------------------------------------- /assets/logo/Slack_Mark_Web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/assets/logo/Slack_Mark_Web.png -------------------------------------------------------------------------------- /assets/logo/estimote-logo-square.de0bd239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/assets/logo/estimote-logo-square.de0bd239.png -------------------------------------------------------------------------------- /assets/logo/slack_rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/assets/logo/slack_rgb.png -------------------------------------------------------------------------------- /assets/slackbooking.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/assets/slackbooking.sketch -------------------------------------------------------------------------------- /client/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/.csslintrc -------------------------------------------------------------------------------- /client/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/.eslintrc -------------------------------------------------------------------------------- /client/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/.npmignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/README.md -------------------------------------------------------------------------------- /client/app/common/img/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/common/img/app_logo.png -------------------------------------------------------------------------------- /client/app/common/img/large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/common/img/large.png -------------------------------------------------------------------------------- /client/app/common/img/medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/common/img/medium.png -------------------------------------------------------------------------------- /client/app/common/img/slack-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/common/img/slack-login.png -------------------------------------------------------------------------------- /client/app/common/img/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/common/img/small.png -------------------------------------------------------------------------------- /client/app/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/common/index.js -------------------------------------------------------------------------------- /client/app/common/libs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/common/libs/index.js -------------------------------------------------------------------------------- /client/app/common/libs/ng-cordova-beacon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/common/libs/ng-cordova-beacon.js -------------------------------------------------------------------------------- /client/app/common/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/common/util/index.js -------------------------------------------------------------------------------- /client/app/common/util/services/$exceptionHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/common/util/services/$exceptionHandler.js -------------------------------------------------------------------------------- /client/app/entry-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/entry-template.html -------------------------------------------------------------------------------- /client/app/home/bookingModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/home/bookingModal.html -------------------------------------------------------------------------------- /client/app/home/home.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/home/home.controller.js -------------------------------------------------------------------------------- /client/app/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/home/home.html -------------------------------------------------------------------------------- /client/app/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/home/index.js -------------------------------------------------------------------------------- /client/app/home/room.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/home/room.service.js -------------------------------------------------------------------------------- /client/app/home/states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/home/states.js -------------------------------------------------------------------------------- /client/app/home/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/home/style.scss -------------------------------------------------------------------------------- /client/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/index.js -------------------------------------------------------------------------------- /client/app/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/layout.html -------------------------------------------------------------------------------- /client/app/states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/states.js -------------------------------------------------------------------------------- /client/app/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/style.scss -------------------------------------------------------------------------------- /client/app/variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/app/variable.scss -------------------------------------------------------------------------------- /client/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/config.xml -------------------------------------------------------------------------------- /client/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/gulpfile.js -------------------------------------------------------------------------------- /client/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/hooks/README.md -------------------------------------------------------------------------------- /client/hooks/after_prepare/010_add_platform_class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/hooks/after_prepare/010_add_platform_class.js -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/package.json -------------------------------------------------------------------------------- /client/plugins/android.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/plugins/android.json -------------------------------------------------------------------------------- /client/plugins/cordova-plugin-transport-security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/plugins/cordova-plugin-transport-security/README.md -------------------------------------------------------------------------------- /client/plugins/cordova-plugin-transport-security/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/plugins/cordova-plugin-transport-security/package.json -------------------------------------------------------------------------------- /client/plugins/cordova-plugin-transport-security/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/plugins/cordova-plugin-transport-security/plugin.xml -------------------------------------------------------------------------------- /client/plugins/fetch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/plugins/fetch.json -------------------------------------------------------------------------------- /client/plugins/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/plugins/ios.json -------------------------------------------------------------------------------- /client/res/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/icon/icon.png -------------------------------------------------------------------------------- /client/res/screen/android/screen-hdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/android/screen-hdpi-portrait.png -------------------------------------------------------------------------------- /client/res/screen/android/screen-ldpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/android/screen-ldpi-portrait.png -------------------------------------------------------------------------------- /client/res/screen/android/screen-mdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/android/screen-mdpi-portrait.png -------------------------------------------------------------------------------- /client/res/screen/android/screen-xhdpi-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/android/screen-xhdpi-portrait.png -------------------------------------------------------------------------------- /client/res/screen/ios/Default-667h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/ios/Default-667h.png -------------------------------------------------------------------------------- /client/res/screen/ios/Default-736h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/ios/Default-736h.png -------------------------------------------------------------------------------- /client/res/screen/ios/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/ios/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /client/res/screen/ios/screen-ipad-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/ios/screen-ipad-portrait-2x.png -------------------------------------------------------------------------------- /client/res/screen/ios/screen-ipad-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/ios/screen-ipad-portrait.png -------------------------------------------------------------------------------- /client/res/screen/ios/screen-iphone-portrait-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/ios/screen-iphone-portrait-2x.png -------------------------------------------------------------------------------- /client/res/screen/ios/screen-iphone-portrait-568h-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/ios/screen-iphone-portrait-568h-2x.png -------------------------------------------------------------------------------- /client/res/screen/ios/screen-iphone-portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/ios/screen-iphone-portrait.png -------------------------------------------------------------------------------- /client/res/screen/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/res/screen/screen.png -------------------------------------------------------------------------------- /client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/webpack.config.js -------------------------------------------------------------------------------- /client/www/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/www/app.js -------------------------------------------------------------------------------- /client/www/app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/www/app.js.map -------------------------------------------------------------------------------- /client/www/font/05acfdb568b3df49ad31355b19495d4a.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/www/font/05acfdb568b3df49ad31355b19495d4a.woff -------------------------------------------------------------------------------- /client/www/font/24712f6c47821394fba7942fbb52c3b2.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/www/font/24712f6c47821394fba7942fbb52c3b2.ttf -------------------------------------------------------------------------------- /client/www/font/2c2ae068be3b089e0a5b59abb1831550.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/www/font/2c2ae068be3b089e0a5b59abb1831550.eot -------------------------------------------------------------------------------- /client/www/font/621bd386841f74e0053cb8e67f8a0604.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/www/font/621bd386841f74e0053cb8e67f8a0604.svg -------------------------------------------------------------------------------- /client/www/img/4021dd335fcfb21c9b3623ba15f532a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/www/img/4021dd335fcfb21c9b3623ba15f532a3.png -------------------------------------------------------------------------------- /client/www/img/9b9c0c8a6872708ff7e672eb67fd5ea0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/www/img/9b9c0c8a6872708ff7e672eb67fd5ea0.png -------------------------------------------------------------------------------- /client/www/img/f48708d60d03f89e15f391d2938d6ee3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/www/img/f48708d60d03f89e15f391d2938d6ee3.png -------------------------------------------------------------------------------- /client/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/client/www/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/package.json -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/README.md -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/src/index.js -------------------------------------------------------------------------------- /server/src/models/bookings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/src/models/bookings.js -------------------------------------------------------------------------------- /server/src/models/rooms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/src/models/rooms.js -------------------------------------------------------------------------------- /server/src/plugins/bookings/bookings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/src/plugins/bookings/bookings.js -------------------------------------------------------------------------------- /server/src/plugins/bookings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/src/plugins/bookings/index.js -------------------------------------------------------------------------------- /server/src/plugins/rooms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/src/plugins/rooms/index.js -------------------------------------------------------------------------------- /server/src/plugins/rooms/rooms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/src/plugins/rooms/rooms.js -------------------------------------------------------------------------------- /server/src/plugins/slack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/src/plugins/slack/index.js -------------------------------------------------------------------------------- /server/src/plugins/slack/slack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/src/plugins/slack/slack.js -------------------------------------------------------------------------------- /server/src/services/slack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hacktimote/SlackBooking/HEAD/server/src/services/slack.js --------------------------------------------------------------------------------