2019-02-20 16:29:48 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Chat
|
|
|
|
# Returns `true` if Chatops is available for the current instance.
|
|
|
|
def self.available?
|
2022-05-06 11:09:03 -04:00
|
|
|
::Feature.enabled?(:chatops)
|
2019-02-20 16:29:48 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|