trabajo-afectivo/lib/mixin/has_backends.rb
2022-01-01 14:38:12 +01:00

22 lines
562 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
module Mixin
module HasBackends
extend ActiveSupport::Concern
included do
class_attribute :backends do
Set.new
end
self_path = ActiveSupport::Dependencies.search_for_file name.underscore
backends_path = self_path.delete_suffix File.extname(self_path)
Mixin::RequiredSubPaths.eager_load_recursive backends_path
backends = "#{name}::Backend".constantize.descendants
self.backends = Set.new(backends)
end
end
end