Welcome to mirror list, hosted at ThFree Co, Russian Federation.

chat.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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