Sha256: 6221a8bd470213cc1b79b55c2ee669cf2afa2f187e98ac3c966879a7ba85bd02
Contents?: true
Size: 1022 Bytes
Versions: 2
Compression:
Stored size: 1022 Bytes
Contents
class Role < ActiveRecord::Base attr_accessible :name, :display_name, :note include MasterModel default_scope order: "roles.position" has_many :user_has_roles has_many :users, through: :user_has_roles after_save :clear_all_cache after_destroy :clear_all_cache extend FriendlyId friendly_id :name def localized_name display_name.localize end def self.all_cache if Rails.env == 'production' Rails.cache.fetch('role_all'){Role.select(:name).all} else Role.select(:name) end end def clear_all_cache Rails.cache.delete('role_all') end def self.default_role Rails.cache.fetch('default_role'){Role.find('Guest')} end end # == Schema Information # # Table name: roles # # id :integer not null, primary key # name :string(255) not null # display_name :string(255) # note :text # created_at :datetime # updated_at :datetime # score :integer default(0), not null # position :integer #
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
enju_leaf-1.1.0.rc14 | app/models/role.rb |
enju_leaf-1.1.0.rc13 | app/models/role.rb |