Skip to content
Snippets Groups Projects
Select Git revision
  • b5c123a5363a2da1c18ecd0e8514eda9bc32c2d1
  • main default protected
  • renovate/solid_queue-1.x-lockfile
  • renovate/importmap-rails-2.x-lockfile
  • renovate/redis-5.x-lockfile
  • renovate/ruby
  • renovate/selenium-webdriver-4.x-lockfile
  • renovate/icalendar-2.x-lockfile
  • renovate/debug-1.x-lockfile
  • renovate/turbo-rails-2.x-lockfile
  • renovate/gcr.io-kaniko-project-executor-1.x
  • eh22 protected
  • update-rubocop
13 results

routes.rb

Blame
  • routes.rb 590 B
    Rails.application.routes.draw do
      get 'sessions/index'
      # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html
    
      # Reveal health status on /up that returns 200 if the app boots with no exceptions, otherwise 500.
      # Can be used by load balancers and uptime monitors to verify that the app is live.
      get "up" => "rails/health#show", as: :rails_health_check
    
      # Defines the root path route ("/")
      # root "posts#index"
      root "conferences#index"
    
      resources :conferences, path: '/', param: :slug do
        resources :sessions, only: [:index]
      end
    end