Class: FormOfWorksController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/form_of_works_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject

POST /form_of_works POST /form_of_works.json



42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'app/controllers/form_of_works_controller.rb', line 42

def create
  @form_of_work = FormOfWork.new(form_of_work_params)

  respond_to do |format|
    if @form_of_work.save
      format.html { redirect_to @form_of_work, notice: t('controller.successfully_created', model: t('activerecord.models.form_of_work')) }
      format.json { render json: @form_of_work, status: :created, location: @form_of_work }
    else
      format.html { render action: "new" }
      format.json { render json: @form_of_work.errors, status: :unprocessable_entity }
    end
  end
end

#destroyObject

DELETE /form_of_works/1 DELETE /form_of_works/1.json



77
78
79
80
81
82
83
84
# File 'app/controllers/form_of_works_controller.rb', line 77

def destroy
  @form_of_work.destroy

  respond_to do |format|
    format.html { redirect_to form_of_works_url, notice: t('controller.successfully_deleted', model: t('activerecord.models.form_of_work')) }
    format.json { head :no_content }
  end
end

#editObject

GET /form_of_works/1/edit



37
38
# File 'app/controllers/form_of_works_controller.rb', line 37

def edit
end

#indexObject

GET /form_of_works GET /form_of_works.json



7
8
9
10
11
12
13
14
# File 'app/controllers/form_of_works_controller.rb', line 7

def index
  @form_of_works = FormOfWork.order(:position)

  respond_to do |format|
    format.html # index.html.erb
    format.json { render json: @form_of_works }
  end
end

#newObject

GET /form_of_works/new GET /form_of_works/new.json



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

def new
  @form_of_work = FormOfWork.new

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

#showObject

GET /form_of_works/1 GET /form_of_works/1.json



18
19
20
21
22
23
# File 'app/controllers/form_of_works_controller.rb', line 18

def show
  respond_to do |format|
    format.html # show.html.erb
    format.json { render json: @form_of_work }
  end
end

#updateObject

PUT /form_of_works/1 PUT /form_of_works/1.json



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'app/controllers/form_of_works_controller.rb', line 58

def update
  if params[:move]
    move_position(@form_of_work, params[:move])
    return
  end

  respond_to do |format|
    if @form_of_work.update(form_of_work_params)
      format.html { redirect_to @form_of_work, notice: t('controller.successfully_updated', model: t('activerecord.models.form_of_work')) }
      format.json { head :no_content }
    else
      format.html { render action: "edit" }
      format.json { render json: @form_of_work.errors, status: :unprocessable_entity }
    end
  end
end