base.rb 249 B

123456789101112
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class CoreWorkflow::Attributes::Base
  3. def initialize(attributes:, attribute:)
  4. @attributes = attributes
  5. @attribute = attribute
  6. end
  7. def values
  8. []
  9. end
  10. end