Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kozono <mkozono@gmail.com>2017-05-05 20:48:01 +0300
committerMichael Kozono <mkozono@gmail.com>2017-05-05 22:12:51 +0300
commite1c245af51e294c84552cff8021342e7ae493b8a (patch)
treee09f11c25d7b232bfdb08ccaaaa4f76b6d20b4bf
parentf05469f99b8c52c4dab7ac9160b47676c87124f9 (diff)
Resolve discussions
-rw-r--r--app/controllers/projects/application_controller.rb11
-rw-r--r--app/models/route.rb2
2 files changed, 6 insertions, 7 deletions
diff --git a/app/controllers/projects/application_controller.rb b/app/controllers/projects/application_controller.rb
index 25232fc9457..b4b0dfc3eb8 100644
--- a/app/controllers/projects/application_controller.rb
+++ b/app/controllers/projects/application_controller.rb
@@ -21,13 +21,12 @@ class Projects::ApplicationController < ApplicationController
end
def project
- @project ||= find_routable!(Project,
- File.join(params[:namespace_id], params[:project_id] || params[:id]),
- extra_authorization_proc: project_not_being_deleted?)
- end
+ return @project if @project
+
+ path = File.join(params[:namespace_id], params[:project_id] || params[:id])
+ auth_proc = ->(project) { !project.pending_delete? }
- def project_not_being_deleted?
- ->(project) { !project.pending_delete? }
+ @project = find_routable!(Project, path, extra_authorization_proc: auth_proc)
end
def repository
diff --git a/app/models/route.rb b/app/models/route.rb
index 3d798ce937b..b34cce9077a 100644
--- a/app/models/route.rb
+++ b/app/models/route.rb
@@ -16,7 +16,7 @@ class Route < ActiveRecord::Base
scope :direct_descendant_routes, -> (path) { where('routes.path LIKE ? AND routes.path NOT LIKE ?', "#{sanitize_sql_like(path)}/%", "#{sanitize_sql_like(path)}/%/%") }
def rename_direct_descendant_routes
- return if !path_changed? && !name_changed?
+ return unless path_changed? || name_changed?
direct_descendant_routes = self.class.direct_descendant_routes(path_was)