12ee2753c1
Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
23 lines
410 B
Ruby
23 lines
410 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Projects::BuildsController < Projects::ApplicationController
|
|
before_action :authorize_read_build!
|
|
|
|
def index
|
|
redirect_to project_jobs_path(project)
|
|
end
|
|
|
|
def show
|
|
redirect_to project_job_path(project, job)
|
|
end
|
|
|
|
def raw
|
|
redirect_to raw_project_job_path(project, job)
|
|
end
|
|
|
|
private
|
|
|
|
def job
|
|
@job ||= project.builds.find(params[:id])
|
|
end
|
|
end
|