Assign a random color to new stages
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user