Assign a random color to new stages

This commit is contained in:
Jason Zimdars
2025-05-22 16:50:30 -05:00
parent 09c1543227
commit 8c2ba6cdc7
+7
View File
@@ -1,3 +1,10 @@
class Workflow::Stage < ApplicationRecord
belongs_to :workflow
before_validation :assign_random_color, on: :create
private
def assign_random_color
self.color ||= Card::Colored::COLORS.sample
end
end