12 lines
205 B
Ruby
12 lines
205 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Projects
|
||
|
module Harbor
|
||
|
class RepositoriesController < ::Projects::Harbor::ApplicationController
|
||
|
def show
|
||
|
render :index
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|