aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/fixtures/project.rb
blob: 404b12cbab798e6ceace838d9e051bf0bf911c18 (plain) (blame)
1
2
3
4
5
6
7
class Project < ActiveRecord::Base
  has_and_belongs_to_many :developers, -> { uniq }

  def self.collection_cache_key(collection = all, timestamp_column = :updated_at)
    "projects-#{collection.count}"
  end
end