From 2dff9a32e886220fe63152e905c0d7a32968f695 Mon Sep 17 00:00:00 2001 From: jessib Date: Mon, 5 Nov 2012 16:01:40 -0800 Subject: Working on functionality for replying to and closing tickets. --- help/app/models/ticket.rb | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'help/app/models/ticket.rb') diff --git a/help/app/models/ticket.rb b/help/app/models/ticket.rb index eaad574..cb8e397 100644 --- a/help/app/models/ticket.rb +++ b/help/app/models/ticket.rb @@ -83,12 +83,13 @@ class Ticket < CouchRest::Model::Base end def comments_attributes=(attributes) - comment = TicketComment.new(attributes.values.first) #TicketComment.new(attributes) - #comment.posted_by = User.current.id if User.current #we want to avoid User.current, and current_user won't work here. instead will set in tickets_controller - # what about: comment.posted_by = self.updated_by (will need to add ticket.updated_by) - comment.posted_at = Time.now - comments << comment - + if attributes # could be empty as we will empty if nothing was typed in + comment = TicketComment.new(attributes.values.first) #TicketComment.new(attributes) + #comment.posted_by = User.current.id if User.current #we want to avoid User.current, and current_user won't work here. instead will set in tickets_controller + # what about: comment.posted_by = self.updated_by (will need to add ticket.updated_by) + comment.posted_at = Time.now + comments << comment + end end =begin -- cgit v1.2.3