Method: FrequenciesController#new
- Defined in:
- app/controllers/frequencies_controller.rb
#new ⇒ Object
GET /frequencies/new GET /frequencies/new.json
25 26 27 28 29 30 31 32 |
# File 'app/controllers/frequencies_controller.rb', line 25 def new @frequency = Frequency.new respond_to do |format| format.html # new.html.erb format.json { render json: @frequency } end end |