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.
50 lines
1.2 KiB
Ruby
50 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Projects::PagesController < Projects::ApplicationController
|
|
layout 'project_settings'
|
|
|
|
before_action :require_pages_enabled!
|
|
before_action :authorize_read_pages!, only: [:show]
|
|
before_action :authorize_update_pages!, except: [:show]
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def show
|
|
@domains = @project.pages_domains.order(:domain)
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
|
|
def destroy
|
|
project.remove_pages
|
|
project.pages_domains.destroy_all # rubocop: disable DestroyAll
|
|
|
|
respond_to do |format|
|
|
format.html do
|
|
redirect_to project_pages_path(@project),
|
|
status: 302,
|
|
notice: 'Pages were removed'
|
|
end
|
|
end
|
|
end
|
|
|
|
def update
|
|
result = Projects::UpdateService.new(@project, current_user, project_params).execute
|
|
|
|
respond_to do |format|
|
|
format.html do
|
|
if result[:status] == :success
|
|
flash[:notice] = 'Your changes have been saved'
|
|
else
|
|
flash[:alert] = 'Something went wrong on our end'
|
|
end
|
|
|
|
redirect_to project_pages_path(@project)
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def project_params
|
|
params.require(:project).permit(:pages_https_only)
|
|
end
|
|
end
|