summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/spammable_actions/attributes.rb
blob: d7060e47c07eb0b329511b7ccd0ff11be9deafe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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