summaryrefslogtreecommitdiff
path: root/lib/gitlab/chat.rb
blob: 30e9989d27051ce4dea1c3e127a44d0da8d068cd (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Gitlab
  module Chat
    # Returns `true` if Chatops is available for the current instance.
    def self.available?
      ::Feature.enabled?(:chatops)
    end
  end
end