Class: StaticBlocks::StaticBlocksController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- StaticBlocks::StaticBlocksController
- Defined in:
- app/controllers/static_blocks/static_blocks_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
POST /static_blocks POST /static_blocks.json.
-
#destroy ⇒ Object
DELETE /static_blocks/1 DELETE /static_blocks/1.json.
-
#edit ⇒ Object
GET /static_blocks/1/edit.
-
#index ⇒ Object
GET /static_blocks GET /static_blocks.json.
-
#new ⇒ Object
GET /static_blocks/new GET /static_blocks/new.json.
-
#show ⇒ Object
GET /static_blocks/1 GET /static_blocks/1.json.
-
#update ⇒ Object
PUT /static_blocks/1 PUT /static_blocks/1.json.
Instance Method Details
#create ⇒ Object
POST /static_blocks POST /static_blocks.json
46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'app/controllers/static_blocks/static_blocks_controller.rb', line 46 def create @static_block = StaticBlock.new(params[:static_block]) respond_to do |format| if @static_block.save format.html { redirect_to @static_block, notice: 'Static block was successfully created.' } format.json { render json: @static_block, status: :created, location: @static_block } else format.html { render action: "new" } format.json { render json: @static_block.errors, status: :unprocessable_entity } end end end |
#destroy ⇒ Object
DELETE /static_blocks/1 DELETE /static_blocks/1.json
78 79 80 81 82 83 84 85 86 |
# File 'app/controllers/static_blocks/static_blocks_controller.rb', line 78 def destroy @static_block = StaticBlock.find(params[:id]) @static_block.destroy respond_to do |format| format.html { redirect_to static_blocks_url } format.json { head :no_content } end end |
#edit ⇒ Object
GET /static_blocks/1/edit
40 41 42 |
# File 'app/controllers/static_blocks/static_blocks_controller.rb', line 40 def edit @static_block = StaticBlock.find(params[:id]) end |
#index ⇒ Object
GET /static_blocks GET /static_blocks.json
7 8 9 10 11 12 13 14 15 |
# File 'app/controllers/static_blocks/static_blocks_controller.rb', line 7 def index @search = StaticBlock.search(params[:q]) @static_blocks = @search.result.page(params[:page]).per(10) respond_to do |format| format.html # index.html.erb format.json { render json: @static_blocks } end end |
#new ⇒ Object
GET /static_blocks/new GET /static_blocks/new.json
30 31 32 33 34 35 36 37 |
# File 'app/controllers/static_blocks/static_blocks_controller.rb', line 30 def new @static_block = StaticBlock.new respond_to do |format| format.html # new.html.erb format.json { render json: @static_block } end end |
#show ⇒ Object
GET /static_blocks/1 GET /static_blocks/1.json
19 20 21 22 23 24 25 26 |
# File 'app/controllers/static_blocks/static_blocks_controller.rb', line 19 def show @static_block = StaticBlock.find(params[:id]) respond_to do |format| format.html # show.html.erb format.json { render json: @static_block } end end |
#update ⇒ Object
PUT /static_blocks/1 PUT /static_blocks/1.json
62 63 64 65 66 67 68 69 70 71 72 73 74 |
# File 'app/controllers/static_blocks/static_blocks_controller.rb', line 62 def update @static_block = StaticBlock.find(params[:id]) respond_to do |format| if @static_block.update_attributes(params[:static_block]) format.html { redirect_to @static_block, notice: 'Static block was successfully updated.' } format.json { head :no_content } else format.html { render action: "edit" } format.json { render json: @static_block.errors, status: :unprocessable_entity } end end end |