Class: Adminpanel::SectionsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Adminpanel::SectionsController
- Defined in:
- app/controllers/adminpanel/sections_controller.rb
Instance Method Summary collapse
-
#edit ⇒ Object
def new @section = Section.new authorize! :create, @section end.
-
#index ⇒ Object
redirect_to sections_path end.
- #show ⇒ Object
- #update ⇒ Object
Instance Method Details
#edit ⇒ Object
def new @section = Section.new authorize! :create, @section end
8 9 10 11 12 13 14 |
# File 'app/controllers/adminpanel/sections_controller.rb', line 8 def edit @section = Section.find(params[:id]) # respond_to do |format| # format.html # format.json {render :json => {:section => @section }} # end end |
#index ⇒ Object
redirect_to sections_path end
37 38 39 |
# File 'app/controllers/adminpanel/sections_controller.rb', line 37 def index @sections = Section.all end |
#show ⇒ Object
26 27 28 |
# File 'app/controllers/adminpanel/sections_controller.rb', line 26 def show @section = Section.find(params[:id]) end |
#update ⇒ Object
16 17 18 19 20 21 22 23 24 |
# File 'app/controllers/adminpanel/sections_controller.rb', line 16 def update @section = Section.find(params[:id]) if @section.update_attributes(params[:section]) redirect_to section_path(@section), :notice => 'La seccion se ha actualizado' else render 'edit' end end |