aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/timebands_controller.rb
blob: 7655571931d8416831c837f90e24973d6d7813c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class TimebandsController < ChouetteController

  defaults :resource_class => Chouette::Timeband

  respond_to :html

  belongs_to :referential

  private
  def timeband_params
    params.require(:timeband).permit( :name, :start_time, :end_time )
  end
end