80f9aff34b
- 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
8 lines
130 B
Ruby
8 lines
130 B
Ruby
module Ci
|
|
class LintsController < ::ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def show
|
|
end
|
|
end
|
|
end
|