class SkypeSearch::Conversations

Public Instance Methods

created_at() click to toggle source
# File lib/skype_search/db/conversations.rb, line 9
def created_at
  Time.at(self.creation_timestamp).to_datetime.strftime(TIME_FORMATTER)
end
to_s() click to toggle source
# File lib/skype_search/db/conversations.rb, line 5
def to_s
  "#{self.displayname} - created: #{self.created_at}"
end