Sha256: 86e502eccab919789a7db6a0fa1567828490554d7f43d65d2cfe31f809660579
Contents?: true
Size: 923 Bytes
Versions: 2
Compression:
Stored size: 923 Bytes
Contents
# == Schema Information # # Table name: faalis_permissions # # id :integer not null, primary key # model :string # permission_type :string # created_at :datetime # updated_at :datetime # module Faalis class Permission < Faalis::ORM.proper_base_class if Faalis::ORM.mongoid? include Mongoid::Document include Mongoid::Timestamps field :model, type: String field :permission_type, type: String end has_and_belongs_to_many :groups, class_name: 'Faalis::Group' alias_attribute :action, :permission_type #alias_method :action, :permission_type def to_s t('permission_string', action: t(self.permission_type.to_s), model: t(self.model.underscore.humanize)) end def id_repr "#{self.permission_type.to_s}|#{self.model}" end def model_name model.underscore.humanize end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
faalis-2.0.0.rc3 | app/models/faalis/permission.rb |
faalis-2.0.0.rc2 | app/models/faalis/permission.rb |