Class: Cmtool::SvgFilesController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ApplicationController
- Cmtool::SvgFilesController
- Defined in:
- app/controllers/cmtool/svg_files_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
POST /svg_files POST /svg_files.xml.
-
#destroy ⇒ Object
DELETE /svg_files/1 DELETE /svg_files/1.xml.
-
#edit ⇒ Object
GET /svg_files/1/edit.
-
#index ⇒ Object
GET /svg_files GET /svg_files.xml.
-
#new ⇒ Object
GET /svg_files/new GET /svg_files/new.xml.
-
#show ⇒ Object
GET /svg_files/1 GET /svg_files/1.xml.
-
#update ⇒ Object
PUT /svg_files/1 PUT /svg_files/1.xml.
Methods included from ControllerGlue
Instance Method Details
#create ⇒ Object
POST /svg_files POST /svg_files.xml
43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'app/controllers/cmtool/svg_files_controller.rb', line 43 def create @svg_file = Cmtool::SvgFile.new(svg_file_params) respond_to do |format| if @svg_file.save format.html { redirect_to(cmtool.svg_files_path, :notice => I18n.t('cmtool.action.create.successful', :model => Cmtool::SvgFile.model_name.human)) } format.xml { render :xml => @svg_file, :status => :created, :location => @svg_file } else format.html { render :action => "new" } format.xml { render :xml => @svg_file.errors, :status => :unprocessable_entity } end end end |
#destroy ⇒ Object
DELETE /svg_files/1 DELETE /svg_files/1.xml
75 76 77 78 79 80 81 82 83 |
# File 'app/controllers/cmtool/svg_files_controller.rb', line 75 def destroy @svg_file = Cmtool::SvgFile.find(params[:id]) @svg_file.destroy respond_to do |format| format.html { redirect_to(cmtool.svg_files_url, notice: I18n.t('cmtool.action.destroy.successful', model: Cmtool::SvgFile.model_name.human)) } format.xml { head :ok } end end |
#edit ⇒ Object
GET /svg_files/1/edit
37 38 39 |
# File 'app/controllers/cmtool/svg_files_controller.rb', line 37 def edit @svg_file = Cmtool::SvgFile.find(params[:id]) end |
#index ⇒ Object
GET /svg_files GET /svg_files.xml
5 6 7 8 9 10 11 12 |
# File 'app/controllers/cmtool/svg_files_controller.rb', line 5 def index @svg_files = Cmtool::SvgFile.all respond_to do |format| format.html # index.html.erb format.xml { render :xml => @svg_files } end end |
#new ⇒ Object
GET /svg_files/new GET /svg_files/new.xml
27 28 29 30 31 32 33 34 |
# File 'app/controllers/cmtool/svg_files_controller.rb', line 27 def new @svg_file = Cmtool::SvgFile.new respond_to do |format| format.html # new.html.erb format.xml { render :xml => @svg_file } end end |
#show ⇒ Object
GET /svg_files/1 GET /svg_files/1.xml
16 17 18 19 20 21 22 23 |
# File 'app/controllers/cmtool/svg_files_controller.rb', line 16 def show @svg_file = Cmtool::SvgFile.find(params[:id]) respond_to do |format| format.html # show.html.erb format.xml { render :xml => @svg_file } end end |
#update ⇒ Object
PUT /svg_files/1 PUT /svg_files/1.xml
59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'app/controllers/cmtool/svg_files_controller.rb', line 59 def update @svg_file = Cmtool::SvgFile.find(params[:id]) respond_to do |format| if @svg_file.update_attributes(svg_file_params) format.html { redirect_to(cmtool.svg_files_path, :notice => I18n.t('cmtool.action.update.successful', :model => Cmtool::SvgFile.model_name.human)) } format.xml { head :ok } else format.html { render :action => "edit" } format.xml { render :xml => @svg_file.errors, :status => :unprocessable_entity } end end end |