debian-mirror-gitlab/app/models/integrations/flowdock.rb

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

21 lines
390 B
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# frozen_string_literal: true
2023-03-04 22:38:38 +05:30
# 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
2021-09-04 01:27:46 +05:30
module Integrations
class Flowdock < Integration
2023-03-04 22:38:38 +05:30
def readonly?
true
2021-09-04 01:27:46 +05:30
end
def self.to_param
'flowdock'
end
def self.supported_events
2023-03-04 22:38:38 +05:30
%w[]
2021-09-04 01:27:46 +05:30
end
end
end