rthbound/protected_record

View on GitHub
lib/protected_record/responsible_user.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ProtectedRecord
  module ResponsibleUser
    def self.included(base)
      base.send :include, ProtectedRecord::ChangeLog::Changer
      base.send :include, ProtectedRecord::ChangeRequest::Changer
    end
  end
end