chaps-io/public_activity

View on GitHub
lib/public_activity/models/activist.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PublicActivity
  # Provides helper methods for selecting activities from a user.
  module Activist
    # Delegates to configured ORM.
    def self.included(base)
      base.extend PublicActivity::inherit_orm("Activist")
    end
  end
end