From 8b917ccd60324997a33c04432ce4d079fc015b99 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 14 Oct 2012 12:32:55 +0100 Subject: [PATCH 1/1] Allow an optional comment to be given when closing a note --- app/controllers/notes_controller.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/controllers/notes_controller.rb b/app/controllers/notes_controller.rb index 528907d16..bf9d0187f 100644 --- a/app/controllers/notes_controller.rb +++ b/app/controllers/notes_controller.rb @@ -131,6 +131,7 @@ class NotesController < ApplicationController # Extract the arguments id = params[:id].to_i + comment = params[:text] name = params[:name] # Find the note and check it is valid @@ -142,7 +143,7 @@ class NotesController < ApplicationController Note.transaction do @note.close - add_comment(@note, nil, name, "closed") + add_comment(@note, comment, name, "closed") end # Return a copy of the updated note -- 2.43.2