module OpenProject::ServicePacks::Patches::EnumerationPatch

Public Class Methods

included(receiver) click to toggle source
# File lib/open_project/service_packs/patches/enumeration_patch.rb, line 24
        def self.included(receiver)
                receiver.extend         ClassMethods
                receiver.send :include, InstanceMethods

                receiver.class_eval do
                        after_create :update_sp_rates
        end
end