debian-mirror-gitlab/app/controllers/concerns/spammable_actions/attributes.rb
2021-10-27 15:23:28 +05:30

13 lines
241 B
Ruby

# frozen_string_literal: true
module SpammableActions
module Attributes
extend ActiveSupport::Concern
private
def spammable
raise NotImplementedError, "#{self.class} does not implement #{__method__}"
end
end
end