├── .gitattributes ├── .github └── workflows │ └── linters.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── app ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── api │ │ └── v1 │ │ │ ├── experiences_controller.rb │ │ │ ├── reservations_controller.rb │ │ │ └── users_controller.rb │ ├── application_controller.rb │ └── concerns │ │ └── .keep ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── experience.rb │ ├── reservation.rb │ └── user.rb └── views │ └── layouts │ ├── mailer.html.erb │ └── mailer.text.erb ├── assets └── images │ └── ERD.png ├── bin ├── bundle ├── rails ├── rake └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── cors.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── rswag_api.rb │ └── rswag_ui.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb └── storage.yml ├── db ├── migrate │ ├── 20231027212431_create_users.rb │ ├── 20231027212728_create_experiences.rb │ ├── 20231027213236_create_reservations.rb │ ├── 20231030195316_add_image_to_experiences.rb │ └── 20231106201045_add_details_to_experiences.rb ├── schema.rb └── seeds.rb ├── lib └── tasks │ └── .keep ├── log └── .keep ├── public └── robots.txt ├── spec ├── factories │ ├── experiences.rb │ ├── reservations.rb │ └── users.rb ├── models │ ├── experience_spec.rb │ ├── reservation_spec.rb │ └── user_spec.rb ├── rails_helper.rb ├── requests │ ├── api │ │ └── my_spec.rb │ ├── experiences_spec.rb │ ├── reservations_spec.rb │ └── users_spec.rb ├── spec_helper.rb ├── support │ ├── loader.rb │ └── test_helper.rb └── swagger_helper.rb ├── storage └── .keep ├── swagger └── v1 │ └── swagger.yaml ├── tmp ├── .keep ├── pids │ └── .keep └── storage │ └── .keep └── vendor └── .keep /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/Rakefile -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/experiences_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/controllers/api/v1/experiences_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/reservations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/controllers/api/v1/reservations_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/controllers/api/v1/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/experience.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/models/experience.rb -------------------------------------------------------------------------------- /app/models/reservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/models/reservation.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /assets/images/ERD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/assets/images/ERD.png -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/rswag_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/initializers/rswag_api.rb -------------------------------------------------------------------------------- /config/initializers/rswag_ui.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/initializers/rswag_ui.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20231027212431_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/db/migrate/20231027212431_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20231027212728_create_experiences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/db/migrate/20231027212728_create_experiences.rb -------------------------------------------------------------------------------- /db/migrate/20231027213236_create_reservations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/db/migrate/20231027213236_create_reservations.rb -------------------------------------------------------------------------------- /db/migrate/20231030195316_add_image_to_experiences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/db/migrate/20231030195316_add_image_to_experiences.rb -------------------------------------------------------------------------------- /db/migrate/20231106201045_add_details_to_experiences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/db/migrate/20231106201045_add_details_to_experiences.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/factories/experiences.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/factories/experiences.rb -------------------------------------------------------------------------------- /spec/factories/reservations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/factories/reservations.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/models/experience_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/models/experience_spec.rb -------------------------------------------------------------------------------- /spec/models/reservation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/models/reservation_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/api/my_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/requests/api/my_spec.rb -------------------------------------------------------------------------------- /spec/requests/experiences_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/requests/experiences_spec.rb -------------------------------------------------------------------------------- /spec/requests/reservations_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/requests/reservations_spec.rb -------------------------------------------------------------------------------- /spec/requests/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/requests/users_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/support/loader.rb -------------------------------------------------------------------------------- /spec/support/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/support/test_helper.rb -------------------------------------------------------------------------------- /spec/swagger_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/spec/swagger_helper.rb -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /swagger/v1/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HFG43/final_capstone_back_end/HEAD/swagger/v1/swagger.yaml -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------