Skip to content
Extraits de code Groupes Projets
authors_controller.rb 387 octets
Newer Older
  • Learn to ignore specific revisions
  • class AuthorsController < ApplicationController
      before_filter :authenticate_user!
      
      def show
        @author= Author.where(:id => params[:id]).first
    
        @author_ostatus_posts = @author.ostatus_posts.sort(:created_at.desc)
    
    
    
      def destroy
        current_user.unsubscribe_from_pubsub(params[:id])
        flash[:notice] = "unsubscribed person."
        redirect_to ostatus_path 
      end