gitlab-org--gitlab-foss/app/controllers/ci/lints_controller.rb
Mayra Cabrera 80f9aff34b Make ci/lint page context aware:
- Create ci/lints controller inside project/
- Move js pages to be inside projects/
- Copy view ci/lint view to be inside project folder
- Remove ci/lint view and js files

Closes #43603
2018-03-26 17:03:11 -06:00

8 lines
130 B
Ruby

module Ci
class LintsController < ::ApplicationController
before_action :authenticate_user!
def show
end
end
end