gitlab-org--gitlab-foss/lib/peek/views/host.rb

10 lines
146 B
Ruby

module Peek
module Views
class Host < View
def results
{ hostname: Gitlab::Environment.hostname }
end
end
end
end