Method: CategoriesController#new

Defined in:
app/controllers/categories_controller.rb

#newObject

GET /categories/new GET /categories/new.json



20
21
22
23
24
25
26
27
# File 'app/controllers/categories_controller.rb', line 20

def new
  @category = Category.new

  respond_to do |format|
    format.html # new.html.erb
    format.json { render json: @category }
  end
end