2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module Chat
|
|
|
|
# Returns `true` if Chatops is available for the current instance.
|
|
|
|
def self.available?
|
2022-07-16 23:28:13 +05:30
|
|
|
::Feature.enabled?(:chatops)
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|