brightin/brightcontent

View on GitHub
attachments/lib/brightcontent/attachments/engine.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Brightcontent
  module Attachments
    class Engine < ::Rails::Engine
      initializer "Add attachments class method" do
        ActiveSupport.on_load(:active_record) do
          include ModelExtensions
        end
      end
    end
  end
end