Sha256: ed76c3c57bc1e7749586e3e3e733c1effb04f2b8153cd4981bd2005766e458bc

Contents?: true

Size: 1.05 KB

Versions: 5

Compression:

Stored size: 1.05 KB

Contents

class PostsController < ApplicationController
  before_action :set_post, only: [:show, :edit, :update, :destroy]

  # GET /posts
  def index
    @posts = Post.all
  end

  # GET /posts/1
  def show
  end

  # GET /posts/new
  def new
    @post = Post.new
  end

  # GET /posts/1/edit
  def edit
  end

  # POST /posts
  def create
    @post = Post.new(post_params)

    if @post.save
      redirect_to @post, notice: 'Post was successfully created.'
    else
      render action: 'new'
    end
  end

  # PATCH/PUT /posts/1
  def update
    if @post.update(post_params)
      redirect_to @post, notice: 'Post was successfully updated.'
    else
      render action: 'edit'
    end
  end

  # DELETE /posts/1
  def destroy
    @post.destroy
    redirect_to posts_url, notice: 'Post was successfully destroyed.'
  end

  private
    # Use callbacks to share common setup or constraints between actions.
    def set_post
      @post = Post.find(params[:id])
    end

    # Only allow a trusted parameter "white list" through.
    def post_params
      params[:post]
    end
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
stylus-1.0.2 spec/support/generators/tmp/app/controllers/posts_controller.rb
epuber-stylus-1.1.1 spec/support/generators/tmp/app/controllers/posts_controller.rb
epuber-stylus-1.1.0 spec/support/generators/tmp/app/controllers/posts_controller.rb
myth-rails-1.0.1 test/tmp/app/controllers/posts_controller.rb
stylus-1.0.1 spec/support/generators/tmp/app/controllers/posts_controller.rb