summaryrefslogtreecommitdiff
path: root/lib/gitlab/chat.rb
blob: 23d4fb36b66a9bea137379cd8fb44d5aaf359b10 (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, default_enabled: true)
    end
  end
end