Sha256: fb7dafdbaa6c31b206dd0c5be60a8cd8b1d08ab56bc609329e6524798ea69568

Contents?: true

Size: 383 Bytes

Versions: 3

Compression:

Stored size: 383 Bytes

Contents

module Authz
  # Superclass for all internal models
  # @api private
  class ApplicationRecord < ActiveRecord::Base
    self.abstract_class = true

    # Forces the use of Rails 5.1 and below for #cache_key.
    # This is limited to the gem's inner workings so the
    # host app is not affected.
    # #cache_key will include timestamp.
    self.cache_versioning = false

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
authz-0.0.5 app/models/authz/application_record.rb
authz-0.0.4 app/models/authz/application_record.rb
authz-0.0.3 app/models/authz/application_record.rb