Created
January 10, 2016 12:26
-
-
Save aldesantis/5c6a8c53982b29661c5b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Crowdster | |
class Engine < ::Rails::Engine | |
isolate_namespace Crowdster | |
config.to_prepare do | |
if Crowdster.config | |
Crowdster.config.user_class.constantize.class_eval do | |
has_many :campaigns, class_name: 'Crowdster::Campaign' | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment