7 lines
162 B
Ruby
7 lines
162 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::GitalyServersController < Admin::ApplicationController
|
|
def index
|
|
@gitaly_servers = Gitaly::Server.all
|
|
end
|
|
end
|