gitlab-org--gitlab-foss/lib/gitlab/mailgun/webhook_processors/base.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
295 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
module Gitlab
module Mailgun
module WebhookProcessors
class Base
def initialize(payload)
@payload = payload || {}
end
def execute
end
private
attr_reader :payload
end
end
end
end