Skip to content
Snippets Groups Projects
Commit f691010d authored by Douwe Maan's avatar Douwe Maan
Browse files

Make sure NotesActions#noteable returns a Noteable in the update action

parent a4072db0
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -4,7 +4,7 @@ module NotesActions
 
included do
before_action :set_polling_interval_header, only: [:index]
before_action :noteable, only: :index
before_action :require_noteable!, only: [:index, :create]
before_action :authorize_admin_note!, only: [:update, :destroy]
before_action :note_project, only: [:create]
end
Loading
Loading
@@ -90,7 +90,7 @@ module NotesActions
if note.persisted?
attrs[:valid] = true
 
if noteable.nil? || noteable.discussions_rendered_on_frontend?
if noteable.discussions_rendered_on_frontend?
attrs.merge!(note_serializer.represent(note))
else
attrs.merge!(
Loading
Loading
@@ -191,7 +191,11 @@ module NotesActions
end
 
def noteable
@noteable ||= notes_finder.target || render_404
@noteable ||= notes_finder.target || @note&.noteable
end
def require_noteable!
render_404 unless noteable
end
 
def last_fetched_at
Loading
Loading
Loading
Loading
@@ -20,6 +20,7 @@ class Snippets::NotesController < ApplicationController
def snippet
PersonalSnippet.find_by(id: params[:snippet_id])
end
alias_method :noteable, :snippet
 
def note_params
super.merge(noteable_id: params[:snippet_id])
Loading
Loading
---
title: Make sure NotesActions#noteable returns a Noteable in the update action
merge_request:
author:
type: fixed
Loading
Loading
@@ -336,6 +336,29 @@ describe Projects::NotesController do
end
end
 
describe 'PUT update' do
let(:request_params) do
{
namespace_id: project.namespace,
project_id: project,
id: note,
format: :json,
note: {
note: "New comment"
}
}
end
before do
sign_in(note.author)
project.team << [note.author, :developer]
end
it "updates the note" do
expect { put :update, request_params }.to change { note.reload.note }
end
end
describe 'DELETE destroy' do
let(:request_params) do
{
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment