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

host.rb « views « peek « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43c8a35c7ea00f2f223652c48f4630485c03491f (plain)
1
2
3
4
5
6
7
8
9
module Peek
  module Views
    class Host < View
      def results
        { hostname: Gitlab::Environment.hostname }
      end
    end
  end
end