Sha256: 351b97592f34ceeab958f235edbc343a6255529d4619f16796c3694bcd6ac738

Contents?: true

Size: 783 Bytes

Versions: 6

Compression:

Stored size: 783 Bytes

Contents

class PostsController < ApplicationController

  def index
    @posts = Post.all
  end

  def new
    @post = Post.new
  end

  def create
    @post = Post.new(post_params)
    if @post.save
      redirect_to posts_path, :notice => 'Post saved!'
    else
      render 'new'
    end
  end

  def edit
    @post = Post.find_by_id(params[:id])
    render 'new'
  end

  def update
    @post = Post.find_by_id(params[:id])
    if @post.update(post_params)
      redirect_to posts_path, :notice => 'Post saved!'
    else
      render 'new'
    end
  end

  def destroy
    @post = Post.find_by_id(params[:id])
    @post.destroy
    redirect_to posts_path, :notice => 'Post deleted!'
  end

  private

    def post_params
      params.require(:post).permit(:title, :markdown)
    end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mark_it_zero-0.3.2 test/dummy/app/controllers/posts_controller.rb
mark_it_zero-0.3.1 test/dummy/app/controllers/posts_controller.rb
mark_it_zero-0.3.0 test/dummy/app/controllers/posts_controller.rb
mark_it_zero-0.2.0 test/dummy/app/controllers/posts_controller.rb
mark_it_zero-0.1.1 test/dummy/app/controllers/posts_controller.rb
mark_it_zero-0.1.0 test/dummy/app/controllers/posts_controller.rb