Newer
Older
danielvincent
a validé
class BlogsController < ApplicationController
before_filter :authenticate_user!
def index
@blogs = Blog.paginate :page => params[:page], :order => 'created_at DESC'
danielvincent
a validé
end
def show
@blog = Blog.find(params[:id])
end
def new
@blog = Blog.new
end
def create
@blog = Blog.new(params[:blog])
danielvincent
a validé
if @blog.save
flash[:notice] = "Successfully created blog."
redirect_to @blog
else
render :action => 'new'
end
end
def edit
danielvincent
a validé
end
def update
danielvincent
a validé
if @blog.update_attributes(params[:blog])
flash[:notice] = "Successfully updated blog."
redirect_to @blog
else
render :action => 'edit'
end
end
def destroy
danielvincent
a validé
@blog.destroy
flash[:notice] = "Successfully destroyed blog."
redirect_to blogs_url
end
end