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