aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/timebands_controller.rb
blob: 446255cac981fef61b2208edd5323e481ce2c175 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class TimebandsController < ChouetteController

  defaults :resource_class => Chouette::Timeband

  respond_to :html

  belongs_to :referential

  def new
    new! do
      build_breadcrumb :new
    end
  end

  private

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