TaskStatus::Transition model

This commit is contained in:
2026-04-25 14:30:12 +03:00
parent b1038c0d66
commit bf78009df8
4 changed files with 36 additions and 1 deletions
+4
View File
@@ -4,6 +4,10 @@ class TaskStatus < ApplicationRecord
belongs_to :workflow
has_one :project, through: :workflow
has_many :from_transitions, class_name: 'TaskStatus::Transition', inverse_of: :from, dependent: :destroy
has_many :to_transitions, class_name: 'TaskStatus::Transition', inverse_of: :to, dependent: :destroy
has_many :next_statuses, class_name: 'TaskStatus', through: :from_transitions, source: :to
enum :icon, %w[new achived done circle_dash hammer play tool].index_by(&:itself), default: 'new', scopes: false
enum :color, %w[blue gray yellow green purple pink].index_by(&:itself), default: 'gray', scopes: false