Method: ClassificationsController#new
- Defined in:
- app/controllers/classifications_controller.rb
#new ⇒ Object
GET /classifications/new GET /classifications/new.json
51 52 53 54 55 56 57 58 59 60 |
# File 'app/controllers/classifications_controller.rb', line 51 def new @classification_types = ClassificationType.all @classification = Classification.new @classification.classification_type = @classification_type respond_to do |format| format.html # new.html.erb format.json { render json: @classification } end end |