Sha256: 6cf47423d9321a4ac6c2ecac48f84dc0e34e0b195f32bb145c9f31d9d9253b19

Contents?: true

Size: 517 Bytes

Versions: 2

Compression:

Stored size: 517 Bytes

Contents

Rails.application.routes.draw do

  resources :schedules, except: [:show]
  get 'schedules/:id/edit-in-modal' => 'schedules#edit_in_modal'
  get 'schedules/:id/edit_with_index' => 'schedules#edit_with_index', as: 'edit_schedule_with_index'

  get 'custom_schedules/new' => 'schedules#new_custom'
  get 'custom_schedules/:id/edit' => 'schedules#edit_custom'
  get 'schedules/filtered' => 'schedules#filter_schedules', as: 'filtered_schedules'

  resources :no_sql_models, only: [:new, :index]

  resources :people
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hot_date_rails-1.5.7 spec/dummy/config/routes.rb
hot_date_rails-1.5.6 spec/dummy/config/routes.rb