Sha256: be235a9175dec6e0aa5c51a7fd0072046723f12fce416031e54ebf93c33f2036
Contents?: true
Size: 468 Bytes
Versions: 25
Compression:
Stored size: 468 Bytes
Contents
# frozen_string_literal: true 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
25 entries across 25 versions & 1 rubygems