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
path: root/lib
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2016-04-12 16:43:29 +0300
committerRobert Schilling <rschilling@student.tugraz.at>2016-04-12 16:43:29 +0300
commitdc39c8372d760eceba50a35505dad8663b9e851e (patch)
treef4fbba5d35ea707d430b624a9f63c84649c5211f /lib
parent49484f9a2c2efb670f044028c555f00378484dd4 (diff)
Adapt tests to new testing guidelines
Diffstat (limited to 'lib')
-rw-r--r--lib/api/notes.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/api/notes.rb b/lib/api/notes.rb
index 2ed986b9ec5..a1c98f5e8ff 100644
--- a/lib/api/notes.rb
+++ b/lib/api/notes.rb
@@ -124,7 +124,9 @@ module API
delete ":id/#{noteables_str}/:#{noteable_id_str}/notes/:note_id" do
note = user_project.notes.find(params[:note_id])
authorize! :admin_note, note
+
::Notes::DeleteService.new(user_project, current_user).execute(note)
+
present note, with: Entities::Note
end
end