├── .dockerignore ├── .gitignore ├── .ruby-version ├── DockerfileNode ├── DockerfileRuby ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── background.jpg │ │ ├── house2.jpg │ │ ├── house3.jpg │ │ ├── jamie-lannister.jpg │ │ ├── jon-snow.jpg │ │ ├── logo-old.png │ │ ├── logo-with-name.png │ │ ├── logo.png │ │ ├── map.jpg │ │ ├── ned-stark.jpg │ │ ├── night-king.jpg │ │ └── sansa-stark.jpg │ ├── javascripts │ │ ├── api │ │ │ ├── bookings.coffee │ │ │ ├── sessions.coffee │ │ │ └── spots.coffee │ │ ├── application.js │ │ ├── cable.js │ │ ├── channels │ │ │ └── .keep │ │ ├── static_pages.coffee │ │ ├── static_pages_controller.coffee │ │ └── users.coffee │ └── stylesheets │ │ ├── api │ │ ├── bookingIndex.scss │ │ ├── bookings.scss │ │ ├── sessions.scss │ │ ├── spot_show.scss │ │ ├── spots_index.scss │ │ └── spots_index_homepage.scss │ │ ├── application.css │ │ ├── base │ │ └── reset.scss │ │ ├── greetings.scss │ │ ├── guest_filter.scss │ │ ├── react-dates.scss │ │ ├── search_form.scss │ │ ├── searchbar.scss │ │ ├── splash.scss │ │ ├── static_pages.scss │ │ ├── static_pages_controller.scss │ │ └── users.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── api │ │ ├── bookings_controller.rb │ │ ├── sessions_controller.rb │ │ ├── spots_controller.rb │ │ └── users_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── static_pages_controller.rb ├── helpers │ ├── api │ │ ├── bookings_helper.rb │ │ ├── sessions_helper.rb │ │ └── spots_helper.rb │ ├── application_helper.rb │ ├── static_pages_controller_helper.rb │ ├── static_pages_helper.rb │ └── users_helper.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── amenity.rb │ ├── application_record.rb │ ├── assignment.rb │ ├── booking.rb │ ├── concerns │ │ └── .keep │ ├── photo.rb │ ├── spot.rb │ └── user.rb └── views │ ├── api │ ├── bookings │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ ├── spots │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ └── users │ │ ├── _user.json.jbuilder │ │ └── show.json.jbuilder │ ├── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb │ └── static_pages │ └── root.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── update └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── spring.rb └── storage.yml ├── db ├── migrate │ ├── 20191209163030_create_users.rb │ ├── 20191210162608_edit_users.rb │ ├── 20191210163505_edit_users2.rb │ ├── 20191212161553_create_active_storage_tables.active_storage.rb │ ├── 20191213195641_create_spots.rb │ ├── 20191213221118_edit_spot.rb │ ├── 20191216191735_edit_spots.rb │ ├── 20191218014210_edit_users_again.rb │ ├── 20191218142649_create_amenities.rb │ ├── 20191218143235_joins_table.rb │ ├── 20191218152250_create_photos.rb │ ├── 20191218160043_edit_users3.rb │ ├── 20191218160930_edit_users4.rb │ └── 20191219183950_create_bookings.rb ├── schema.rb └── seeds.rb ├── docker-compose.yml ├── frontend ├── actions │ ├── booking_actions.js │ ├── filter_actions.js │ ├── modal_actions.js │ ├── session.js │ └── spot_actions.js ├── components │ ├── App.jsx │ ├── bookings │ │ ├── booking_index.jsx │ │ ├── booking_index_container.js │ │ ├── booking_index_item.jsx │ │ ├── booking_show.jsx │ │ └── booking_show_container.js │ ├── greeting.jsx │ ├── greeting_container.js │ ├── greeting_non_hompage.jsx │ ├── greetings_container_non_homepage.js │ ├── guests_dropdown.jsx │ ├── guests_filter.jsx │ ├── homepage.jsx │ ├── login_form_container.js │ ├── modal.jsx │ ├── nav_dropdown.jsx │ ├── portfolio_dropdown.jsx │ ├── root.jsx │ ├── scrollToTop.jsx │ ├── search_bar.jsx │ ├── search_form.jsx │ ├── search_form_container.js │ ├── session_form.jsx │ ├── signup_form_container.js │ └── spots │ │ ├── allegianceDropdown.jsx │ │ ├── booking_form.jsx │ │ ├── booking_form_container.js │ │ ├── booking_form_footer.jsx │ │ ├── spot_show.jsx │ │ ├── spot_show_container.js │ │ ├── spot_show_map.jsx │ │ ├── spots_index.jsx │ │ ├── spots_index_container.js │ │ ├── spots_index_filter_nav.jsx │ │ ├── spots_index_homepage.jsx │ │ ├── spots_index_homepage_container.js │ │ ├── spots_index_item.jsx │ │ ├── spots_index_item_homepage.jsx │ │ └── spots_map.jsx ├── index.jsx ├── reducers │ ├── bookings_errors_reducer.js │ ├── bookings_reducer.js │ ├── entities_reducer.js │ ├── errors_reducer.js │ ├── filters_reducer.js │ ├── modal_reducer.js │ ├── root_reducer.js │ ├── session_errors_reducer.js │ ├── session_reducer.js │ ├── spots_reducer.js │ ├── ui_reducer.js │ └── users_reducer.js ├── store │ └── store.js └── util │ ├── auth_route_util.jsx │ ├── bookings_api_util.js │ ├── correct_user_route_util.jsx │ ├── marker_manager.js │ ├── sessions_api_util.js │ └── spots_api_util.js ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── controllers │ ├── .keep │ ├── api │ │ ├── bookings_controller_test.rb │ │ ├── sessions_controller_test.rb │ │ └── spots_controller_test.rb │ ├── static_pages_controller_controller_test.rb │ ├── static_pages_controller_test.rb │ └── users_controller_test.rb ├── fixtures │ ├── .keep │ ├── amenities.yml │ ├── bookings.yml │ ├── files │ │ └── .keep │ ├── photos.yml │ ├── spots.yml │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── amenity_test.rb │ ├── booking_test.rb │ ├── photo_test.rb │ ├── spot_test.rb │ └── user_test.rb ├── system │ └── .keep └── test_helper.rb ├── vendor └── .keep └── webpack.config.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.5.1 -------------------------------------------------------------------------------- /DockerfileNode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/DockerfileNode -------------------------------------------------------------------------------- /DockerfileRuby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/DockerfileRuby -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/background.jpg -------------------------------------------------------------------------------- /app/assets/images/house2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/house2.jpg -------------------------------------------------------------------------------- /app/assets/images/house3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/house3.jpg -------------------------------------------------------------------------------- /app/assets/images/jamie-lannister.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/jamie-lannister.jpg -------------------------------------------------------------------------------- /app/assets/images/jon-snow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/jon-snow.jpg -------------------------------------------------------------------------------- /app/assets/images/logo-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/logo-old.png -------------------------------------------------------------------------------- /app/assets/images/logo-with-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/logo-with-name.png -------------------------------------------------------------------------------- /app/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/logo.png -------------------------------------------------------------------------------- /app/assets/images/map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/map.jpg -------------------------------------------------------------------------------- /app/assets/images/ned-stark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/ned-stark.jpg -------------------------------------------------------------------------------- /app/assets/images/night-king.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/night-king.jpg -------------------------------------------------------------------------------- /app/assets/images/sansa-stark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/images/sansa-stark.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/api/bookings.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/javascripts/api/bookings.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/sessions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/javascripts/api/sessions.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/api/spots.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/javascripts/api/spots.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/static_pages.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/javascripts/static_pages.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/static_pages_controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/javascripts/static_pages_controller.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/users.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/javascripts/users.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/api/bookingIndex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/api/bookingIndex.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/bookings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/api/bookings.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/sessions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/api/sessions.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/spot_show.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/api/spot_show.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/spots_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/api/spots_index.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/spots_index_homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/api/spots_index_homepage.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/base/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/base/reset.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/greetings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/greetings.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/guest_filter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/guest_filter.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/react-dates.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/search_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/search_form.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/searchbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/searchbar.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/splash.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/splash.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/static_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/static_pages.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/static_pages_controller.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/static_pages_controller.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/users.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/assets/stylesheets/users.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/api/bookings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/controllers/api/bookings_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/controllers/api/sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/spots_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/controllers/api/spots_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/controllers/api/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/static_pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/controllers/static_pages_controller.rb -------------------------------------------------------------------------------- /app/helpers/api/bookings_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::BookingsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::SessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/spots_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::SpotsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/static_pages_controller_helper.rb: -------------------------------------------------------------------------------- 1 | module StaticPagesControllerHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/static_pages_helper.rb: -------------------------------------------------------------------------------- 1 | module StaticPagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- 1 | module UsersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/amenity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/models/amenity.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/assignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/models/assignment.rb -------------------------------------------------------------------------------- /app/models/booking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/models/booking.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/photo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/models/photo.rb -------------------------------------------------------------------------------- /app/models/spot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/models/spot.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/api/bookings/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/views/api/bookings/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/bookings/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/views/api/bookings/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/spots/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/views/api/spots/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/spots/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/views/api/spots/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/_user.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/views/api/users/_user.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/users/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/views/api/users/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/static_pages/root.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/app/views/static_pages/root.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/bin/update -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20191209163030_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191209163030_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20191210162608_edit_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191210162608_edit_users.rb -------------------------------------------------------------------------------- /db/migrate/20191210163505_edit_users2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191210163505_edit_users2.rb -------------------------------------------------------------------------------- /db/migrate/20191212161553_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191212161553_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20191213195641_create_spots.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191213195641_create_spots.rb -------------------------------------------------------------------------------- /db/migrate/20191213221118_edit_spot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191213221118_edit_spot.rb -------------------------------------------------------------------------------- /db/migrate/20191216191735_edit_spots.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191216191735_edit_spots.rb -------------------------------------------------------------------------------- /db/migrate/20191218014210_edit_users_again.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191218014210_edit_users_again.rb -------------------------------------------------------------------------------- /db/migrate/20191218142649_create_amenities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191218142649_create_amenities.rb -------------------------------------------------------------------------------- /db/migrate/20191218143235_joins_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191218143235_joins_table.rb -------------------------------------------------------------------------------- /db/migrate/20191218152250_create_photos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191218152250_create_photos.rb -------------------------------------------------------------------------------- /db/migrate/20191218160043_edit_users3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191218160043_edit_users3.rb -------------------------------------------------------------------------------- /db/migrate/20191218160930_edit_users4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191218160930_edit_users4.rb -------------------------------------------------------------------------------- /db/migrate/20191219183950_create_bookings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/migrate/20191219183950_create_bookings.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/actions/booking_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/actions/booking_actions.js -------------------------------------------------------------------------------- /frontend/actions/filter_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/actions/filter_actions.js -------------------------------------------------------------------------------- /frontend/actions/modal_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/actions/modal_actions.js -------------------------------------------------------------------------------- /frontend/actions/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/actions/session.js -------------------------------------------------------------------------------- /frontend/actions/spot_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/actions/spot_actions.js -------------------------------------------------------------------------------- /frontend/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/App.jsx -------------------------------------------------------------------------------- /frontend/components/bookings/booking_index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/bookings/booking_index.jsx -------------------------------------------------------------------------------- /frontend/components/bookings/booking_index_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/bookings/booking_index_container.js -------------------------------------------------------------------------------- /frontend/components/bookings/booking_index_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/bookings/booking_index_item.jsx -------------------------------------------------------------------------------- /frontend/components/bookings/booking_show.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/bookings/booking_show.jsx -------------------------------------------------------------------------------- /frontend/components/bookings/booking_show_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/bookings/booking_show_container.js -------------------------------------------------------------------------------- /frontend/components/greeting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/greeting.jsx -------------------------------------------------------------------------------- /frontend/components/greeting_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/greeting_container.js -------------------------------------------------------------------------------- /frontend/components/greeting_non_hompage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/greeting_non_hompage.jsx -------------------------------------------------------------------------------- /frontend/components/greetings_container_non_homepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/greetings_container_non_homepage.js -------------------------------------------------------------------------------- /frontend/components/guests_dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/guests_dropdown.jsx -------------------------------------------------------------------------------- /frontend/components/guests_filter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/guests_filter.jsx -------------------------------------------------------------------------------- /frontend/components/homepage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/homepage.jsx -------------------------------------------------------------------------------- /frontend/components/login_form_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/login_form_container.js -------------------------------------------------------------------------------- /frontend/components/modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/modal.jsx -------------------------------------------------------------------------------- /frontend/components/nav_dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/nav_dropdown.jsx -------------------------------------------------------------------------------- /frontend/components/portfolio_dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/portfolio_dropdown.jsx -------------------------------------------------------------------------------- /frontend/components/root.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/root.jsx -------------------------------------------------------------------------------- /frontend/components/scrollToTop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/scrollToTop.jsx -------------------------------------------------------------------------------- /frontend/components/search_bar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/search_bar.jsx -------------------------------------------------------------------------------- /frontend/components/search_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/search_form.jsx -------------------------------------------------------------------------------- /frontend/components/search_form_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/search_form_container.js -------------------------------------------------------------------------------- /frontend/components/session_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/session_form.jsx -------------------------------------------------------------------------------- /frontend/components/signup_form_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/signup_form_container.js -------------------------------------------------------------------------------- /frontend/components/spots/allegianceDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/allegianceDropdown.jsx -------------------------------------------------------------------------------- /frontend/components/spots/booking_form.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/booking_form.jsx -------------------------------------------------------------------------------- /frontend/components/spots/booking_form_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/booking_form_container.js -------------------------------------------------------------------------------- /frontend/components/spots/booking_form_footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/booking_form_footer.jsx -------------------------------------------------------------------------------- /frontend/components/spots/spot_show.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spot_show.jsx -------------------------------------------------------------------------------- /frontend/components/spots/spot_show_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spot_show_container.js -------------------------------------------------------------------------------- /frontend/components/spots/spot_show_map.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spot_show_map.jsx -------------------------------------------------------------------------------- /frontend/components/spots/spots_index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spots_index.jsx -------------------------------------------------------------------------------- /frontend/components/spots/spots_index_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spots_index_container.js -------------------------------------------------------------------------------- /frontend/components/spots/spots_index_filter_nav.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spots_index_filter_nav.jsx -------------------------------------------------------------------------------- /frontend/components/spots/spots_index_homepage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spots_index_homepage.jsx -------------------------------------------------------------------------------- /frontend/components/spots/spots_index_homepage_container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spots_index_homepage_container.js -------------------------------------------------------------------------------- /frontend/components/spots/spots_index_item.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spots_index_item.jsx -------------------------------------------------------------------------------- /frontend/components/spots/spots_index_item_homepage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spots_index_item_homepage.jsx -------------------------------------------------------------------------------- /frontend/components/spots/spots_map.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/components/spots/spots_map.jsx -------------------------------------------------------------------------------- /frontend/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/index.jsx -------------------------------------------------------------------------------- /frontend/reducers/bookings_errors_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/bookings_errors_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/bookings_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/bookings_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/entities_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/entities_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/errors_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/errors_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/filters_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/filters_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/modal_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/modal_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/root_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/root_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/session_errors_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/session_errors_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/session_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/session_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/spots_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/spots_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/ui_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/ui_reducer.js -------------------------------------------------------------------------------- /frontend/reducers/users_reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/reducers/users_reducer.js -------------------------------------------------------------------------------- /frontend/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/store/store.js -------------------------------------------------------------------------------- /frontend/util/auth_route_util.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/util/auth_route_util.jsx -------------------------------------------------------------------------------- /frontend/util/bookings_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/util/bookings_api_util.js -------------------------------------------------------------------------------- /frontend/util/correct_user_route_util.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/util/correct_user_route_util.jsx -------------------------------------------------------------------------------- /frontend/util/marker_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/util/marker_manager.js -------------------------------------------------------------------------------- /frontend/util/sessions_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/util/sessions_api_util.js -------------------------------------------------------------------------------- /frontend/util/spots_api_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/frontend/util/spots_api_util.js -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/public/robots.txt -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/api/bookings_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/controllers/api/bookings_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/controllers/api/sessions_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/spots_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/controllers/api/spots_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/static_pages_controller_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/controllers/static_pages_controller_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/static_pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/controllers/static_pages_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/users_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/controllers/users_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/amenities.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/fixtures/amenities.yml -------------------------------------------------------------------------------- /test/fixtures/bookings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/fixtures/bookings.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/photos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/fixtures/photos.yml -------------------------------------------------------------------------------- /test/fixtures/spots.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/fixtures/spots.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/amenity_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/models/amenity_test.rb -------------------------------------------------------------------------------- /test/models/booking_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/models/booking_test.rb -------------------------------------------------------------------------------- /test/models/photo_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/models/photo_test.rb -------------------------------------------------------------------------------- /test/models/spot_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/models/spot_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rmonahan/AirGoT/HEAD/webpack.config.js --------------------------------------------------------------------------------