Class GgradesController
In: app/controllers/ggrades_controller.rb
Parent: ApplicationController

Methods

create   destroy   edit   index   new   show   update  

Public Instance methods

POST /ggrades POST /ggrades.xml

[Source]

    # File app/controllers/ggrades_controller.rb, line 42
42:   def create
43:     @ggrade = Ggrade.new(params[:ggrade])
44: 
45:     respond_to do |format|
46:       if @ggrade.save
47:         flash[:notice] = 'Ggrade was successfully created.'
48:         format.html { redirect_to(@ggrade) }
49:         format.xml  { render :xml => @ggrade, :status => :created, :location => @ggrade }
50:       else
51:         format.html { render :action => "new" }
52:         format.xml  { render :xml => @ggrade.errors, :status => :unprocessable_entity }
53:       end
54:     end
55:   end

DELETE /ggrades/1 DELETE /ggrades/1.xml

[Source]

    # File app/controllers/ggrades_controller.rb, line 76
76:   def destroy
77:     @ggrade = Ggrade.find(params[:id])
78:     @ggrade.destroy
79: 
80:     respond_to do |format|
81:       format.html { redirect_to(ggrades_url) }
82:       format.xml  { head :ok }
83:     end
84:   end

GET /ggrades/1/edit

[Source]

    # File app/controllers/ggrades_controller.rb, line 36
36:   def edit
37:     @ggrade = Ggrade.find(params[:id])
38:   end

GET /ggrades GET /ggrades.xml

[Source]

    # File app/controllers/ggrades_controller.rb, line 4
 4:   def index
 5:     @ggrades = Ggrade.all
 6: 
 7:     respond_to do |format|
 8:       format.html # index.html.erb
 9:       format.xml  { render :xml => @ggrades }
10:     end
11:   end

GET /ggrades/new GET /ggrades/new.xml

[Source]

    # File app/controllers/ggrades_controller.rb, line 26
26:   def new
27:     @ggrade = Ggrade.new
28: 
29:     respond_to do |format|
30:       format.html # new.html.erb
31:       format.xml  { render :xml => @ggrade }
32:     end
33:   end

GET /ggrades/1 GET /ggrades/1.xml

[Source]

    # File app/controllers/ggrades_controller.rb, line 15
15:   def show
16:     @ggrade = Ggrade.find(params[:id])
17: 
18:     respond_to do |format|
19:       format.html # show.html.erb
20:       format.xml  { render :xml => @ggrade }
21:     end
22:   end

PUT /ggrades/1 PUT /ggrades/1.xml

[Source]

    # File app/controllers/ggrades_controller.rb, line 59
59:   def update
60:     @ggrade = Ggrade.find(params[:id])
61: 
62:     respond_to do |format|
63:       if @ggrade.update_attributes(params[:ggrade])
64:         flash[:notice] = 'Ggrade was successfully updated.'
65:         format.html { redirect_to(@ggrade) }
66:         format.xml  { head :ok }
67:       else
68:         format.html { render :action => "edit" }
69:         format.xml  { render :xml => @ggrade.errors, :status => :unprocessable_entity }
70:       end
71:     end
72:   end

[Validate]