mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-06 10:19:48 +00:00
11 lines
246 B
Ruby
11 lines
246 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::GitalyServersController < Admin::ApplicationController
|
|
feature_category :gitaly
|
|
authorize! :read_admin_gitaly_servers, only: [:index]
|
|
|
|
def index
|
|
@gitaly_servers = Gitaly::Server.all
|
|
end
|
|
end
|