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

  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