Method: NextSgad::DepartmentsController#create

Defined in:
app/controllers/next_sgad/departments_controller.rb

#createObject

POST /departments



26
27
28
29
30
31
32
33
34
# File 'app/controllers/next_sgad/departments_controller.rb', line 26

def create
  @department = Department.new(department_params)

  if @department.save
    redirect_to @department, notice: 'Department was successfully created.'
  else
    render :new
  end
end