Class: ParticipatesController

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

Instance Method Summary collapse

Instance Method Details

#createObject

POST /participates POST /participates.json



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

def create
  @participate = Participate.new(participate_params)

  respond_to do |format|
    if @participate.save
      flash[:notice] = 'Participate was successfully created.'
      format.html { redirect_to(@participate) }
      format.json { render json: @participate, status: :created, location: @participate }
    else
      format.html { render action: "new" }
      format.json { render json: @participate.errors, status: :unprocessable_entity }
    end
  end
end

#destroyObject

DELETE /participates/1 DELETE /participates/1.json



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

def destroy
  @participate.destroy

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

#editObject

GET /participates/1/edit



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

def edit
end

#indexObject

GET /participates GET /participates.json



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

def index
  @participates = Participate.page(params[:page])

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

#newObject

GET /participates/new GET /participates/new.json



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

def new
  @participate = Participate.new

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

#showObject

GET /participates/1 GET /participates/1.json



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

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

#updateObject

PUT /participates/1 PUT /participates/1.json



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

def update
  respond_to do |format|
    if @participate.update(participate_params)
      flash[:notice] = 'Participate was successfully updated.'
      format.html { redirect_to(@participate) }
      format.json { head :no_content }
    else
      format.html { render action: "edit" }
      format.json { render json: @participate.errors, status: :unprocessable_entity }
    end
  end
end