diff options
author | Robert Speicher <rspeicher@gmail.com> | 2017-12-20 16:01:44 -0600 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2017-12-20 16:02:36 -0600 |
commit | 6552c36495b5f0f0a662ac4a3fe05876893cc1e1 (patch) | |
tree | 6e35a79b6d036a9f3f1f9d855f782a1a9e419c02 /app | |
parent | ecd1b816644080cc5ccab9c2eddaba9676b47b49 (diff) | |
download | gitlab-ce-6552c36495b5f0f0a662ac4a3fe05876893cc1e1.tar.gz |
Remove a redundant `InvalidPathError` definitionrs-remove-useless-definition
This is already defined in `ExtractsPath`, which this controller
includes.
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/projects/blob_controller.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/app/controllers/projects/blob_controller.rb b/app/controllers/projects/blob_controller.rb index 770381472c5..d838b8dc29e 100644 --- a/app/controllers/projects/blob_controller.rb +++ b/app/controllers/projects/blob_controller.rb @@ -5,9 +5,6 @@ class Projects::BlobController < Projects::ApplicationController include RendersBlob include ActionView::Helpers::SanitizeHelper - # Raised when given an invalid file path - InvalidPathError = Class.new(StandardError) - prepend_before_action :authenticate_user!, only: [:edit] before_action :require_non_empty_project, except: [:new, :create] @@ -61,7 +58,6 @@ class Projects::BlobController < Projects::ApplicationController create_commit(Files::UpdateService, success_path: -> { after_edit_path }, failure_view: :edit, failure_path: project_blob_path(@project, @id)) - rescue Files::UpdateService::FileChangedError @conflict = true render :edit @@ -132,7 +128,6 @@ class Projects::BlobController < Projects::ApplicationController def assign_blob_vars @id = params[:id] @ref, @path = extract_ref(@id) - rescue InvalidPathError render_404 end |