9 lines
146 B
Ruby
9 lines
146 B
Ruby
module Peek
|
|
module Views
|
|
class Host < View
|
|
def results
|
|
{ hostname: Gitlab::Environment.hostname }
|
|
end
|
|
end
|
|
end
|
|
end
|