Class: DemandsController

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

Instance Method Summary collapse

Instance Method Details

#createObject

POST /demands POST /demands.json



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

def create
  @demand = Demand.new(demand_params)

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

#destroyObject

DELETE /demands/1 DELETE /demands/1.json



73
74
75
76
77
78
79
80
# File 'app/controllers/demands_controller.rb', line 73

def destroy
  @demand.destroy

  respond_to do |format|
    format.html { redirect_to demands_url }
    format.json { head :no_content }
  end
end

#editObject

GET /demands/1/edit



38
39
# File 'app/controllers/demands_controller.rb', line 38

def edit
end

#indexObject

GET /demands GET /demands.json



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

def index
  @demands = Demand.order('id DESC').page(params[:page])

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

#newObject

GET /demands/new GET /demands/new.json



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

def new
  @demand = Demand.new

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

#showObject

GET /demands/1 GET /demands/1.json



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

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

#updateObject

PUT /demands/1 PUT /demands/1.json



59
60
61
62
63
64
65
66
67
68
69
# File 'app/controllers/demands_controller.rb', line 59

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