Sha256: 9696817aeb3550f376c0245c5bf971e61eb7938d1d0a96c411541e33466acee8
Contents?: true
Size: 1.3 KB
Versions: 38
Compression:
Stored size: 1.3 KB
Contents
module RailsConnector # The permissions assigned to an Obj. class Permission < CmsBaseModel belongs_to :object, :class_name => 'Obj', :foreign_key => 'object_id' # Returns the Array of the names of the user groups to which read permission has been granted. def self.read user_groups_for_permission_type(1) end # Returns the Array of the names of the user groups to which write permission has been granted def self.write user_groups_for_permission_type(2) end # Returns the Array of the names of the user groups to which root permission has been granted def self.root user_groups_for_permission_type(3) end # Returns the Array of the names of the user groups to which the children creation permission has been granted. def self.create_children user_groups_for_permission_type(4) end # Returns the Array of the names of the user groups to which live read permission has been granted. def self.live user_groups_for_permission_type(5) end private def self.user_groups_for_permission_type(permission_type) # Field name "user_login" is a legacy from CM tables. # Actually the field contains the user group. select(:user_login).where(:permission_type => permission_type).map(&:user_login) end end end
Version data entries
38 entries across 38 versions & 1 rubygems