Sha256: f95b03b3366373b46e8fd723340237e97991a2e5ec68224df9421de0837ec0f0
Contents?: true
Size: 814 Bytes
Versions: 71
Compression:
Stored size: 814 Bytes
Contents
module Sipity # In what capacity can an agent act upon the given entity? # # This is an analogue to the Sipity::WorkflowResponsibility, but # the responsibility only applies to the given entity. # # @example # An Advisor for a given Student would have an # EntitySpecificResponsibility to review an ETD submitted by the # given Student. # The Graduate School Reviewer would have a WorkflowResponsibility # to review all ETDs submitted. # # @see Sipity::WorkflowResponsibility class EntitySpecificResponsibility < ActiveRecord::Base self.table_name = 'sipity_entity_specific_responsibilities' belongs_to :entity, class_name: 'Sipity::Entity' belongs_to :workflow_role, class_name: 'Sipity::WorkflowRole' belongs_to :agent, class_name: 'Sipity::Agent' end end
Version data entries
71 entries across 71 versions & 3 rubygems