Sha256: b585473df8d007bcc06bbdad29a1bc0ef0829adf2c8f296095c33e99500a77a4
Contents?: true
Size: 438 Bytes
Versions: 71
Compression:
Stored size: 438 Bytes
Contents
module Sipity # An actor can take the given action class WorkflowStateAction < ActiveRecord::Base self.table_name = 'sipity_workflow_state_actions' belongs_to :originating_workflow_state, class_name: 'Sipity::WorkflowState' belongs_to :workflow_action, class_name: 'Sipity::WorkflowAction' has_many :workflow_state_action_permissions, dependent: :destroy, class_name: 'Sipity::WorkflowStateActionPermission' end end
Version data entries
71 entries across 71 versions & 3 rubygems