Skip to content
Extraits de code Groupes Projets
blogs_controller.rb 988 octets
Newer Older
  • Learn to ignore specific revisions
  • class BlogsController < ApplicationController
      before_filter :authenticate_user!
    
      def index
    
    maxwell's avatar
    maxwell a validé
        @blogs = Blog.paginate :page => params[:page], :order => 'created_at DESC'
    
      end
      
      def show
        @blog = Blog.find(params[:id])
      end
      
      def new
        @blog = Blog.new
      end
      
      def create
        @blog = Blog.new(params[:blog])
    
    maxwell's avatar
    maxwell a validé
        @blog.person = current_user
    
        if @blog.save
          flash[:notice] = "Successfully created blog."
          redirect_to @blog
        else
          render :action => 'new'
        end
      end
      
      def edit
    
    maxwell's avatar
    maxwell a validé
        @blog = Blog.where(:id => params[:id]).first
    
    maxwell's avatar
    maxwell a validé
        @blog = Blog.where(:id => params[:id]).first
    
        if @blog.update_attributes(params[:blog])
          flash[:notice] = "Successfully updated blog."
          redirect_to @blog
        else
          render :action => 'edit'
        end
      end
      
      def destroy
    
    maxwell's avatar
    maxwell a validé
        @blog = Blog.where(:id => params[:id]).first
    
        @blog.destroy
        flash[:notice] = "Successfully destroyed blog."
        redirect_to blogs_url
      end
    end