summaryrefslogtreecommitdiff
path: root/app/models/integrations/flowdock.rb
blob: d7625cfb3d2b9592d3468d8bf8e937e090c165d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

# This integration is scheduled for removal.
# All records must be deleted before the class can be removed.
# https://gitlab.com/gitlab-org/gitlab/-/issues/379197
module Integrations
  class Flowdock < Integration
    def readonly?
      true
    end

    def self.to_param
      'flowdock'
    end

    def self.supported_events
      %w[]
    end
  end
end