Sha256: da66c0cee99614e21383b028e1d2a293c0e17a0d4ab5f85a1168144fbd214c4f
Contents?: true
Size: 1.77 KB
Versions: 12
Compression:
Stored size: 1.77 KB
Contents
class PostsController < ApplicationController def index @posts = Post.all respond_to do |format| format.html format.json { render json: @posts } end end def show @post = Post.find(params[:id]) track_action '[visits] post', post_id: @post.id respond_to do |format| format.html format.json { render json: @post } end end def new @post = Post.new respond_to do |format| format.html format.json { render json: @post } end end def edit @post = Post.find(params[:id]) end def create @post = Post.new(params[:post]) respond_to do |format| if @post.save format.html { redirect_to @post, notice: 'Post was successfully created.' } format.json { render json: @post, status: :created, location: @post } else format.html { render action: "new" } format.json { render json: @post.errors, status: :unprocessable_entity } end end end def update @post = Post.find(params[:id]) respond_to do |format| if @post.update_attributes(params[:post]) format.html { redirect_to @post, notice: 'Post was successfully updated.' } format.json { head :no_content } else format.html { render action: "edit" } format.json { render json: @post.errors, status: :unprocessable_entity } end end end def destroy @post = Post.find(params[:id]) @post.destroy respond_to do |format| format.html { redirect_to posts_url } format.json { head :no_content } end end # Useful for testing if every event gets tracked when using persist: true. def redirect @post = Post.find(params[:id]) track_action '[redirects] post', post_id: @post.id redirect_to @post end end
Version data entries
12 entries across 12 versions & 1 rubygems