diff options
author | azul <azul@leap.se> | 2014-07-18 12:21:49 +0200 |
---|---|---|
committer | azul <azul@leap.se> | 2014-07-18 12:21:49 +0200 |
commit | bbd41c9bfd2cb88a88d7436dd58a8b46a5d10cf1 (patch) | |
tree | 00b39da219151473437c02ce35344117bcd5b2fa /app/models/user.rb | |
parent | ade74d8a9091ae607586d7b287a0579a2ee7af8e (diff) | |
parent | 20352249fa5dafe3abb2d4b751b1e5c8c0a59abc (diff) |
Merge pull request #180 from azul/feature/messages-api
Feature/messages api
Diffstat (limited to 'app/models/user.rb')
-rw-r--r-- | app/models/user.rb | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 6bc5841..9ac7d3d 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -92,12 +92,9 @@ class User < CouchRest::Model::Base Ticket.for_user(self).limit(count).all #defaults to having most recent updated first end - def messages(unseen = true) + def messages #TODO for now this only shows unseen messages. Will we ever want seen ones? Is it necessary to store? - - # we don't want to emit all the userids associated with a message, so only emit id and text. - Message.by_user_ids_to_show.key(self.id).map { |message| [message.id, message.text] } - + Message.by_user_ids_to_show.key(self.id) end # DEPRECATED |