Draiken/opinio

View on GitHub
lib/opinio/controllers/current_commenter.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Opinio
  module Controllers
    module CurrentCommenter
      extend ActiveSupport::Concern

      def current_commenter
        send Opinio.current_user_method
      end

      included do
        helper_method :current_commenter
      end
    end
  end
end