lib/highrise/person.rb in slainer68-highrise-0.6.1 vs lib/highrise/person.rb in slainer68-highrise-0.6.2
- old
+ new
@@ -1,9 +1,10 @@
module Highrise
class Person < Subject
include Pagination
-
+ include Taggable
+
def self.find_all_across_pages_since(time)
find_all_across_pages(:params => { :since => time.to_s(:db).gsub(/[^\d]/, '') })
end
def company
@@ -26,15 +27,8 @@
usertags << tag.attributes["name"]
end
end
usertags
end
-
- def tag!(tag_name)
- # thanks for the user Inka, http://forum.37signals.com/highrise/forums/15/topics/1312?page=2
- self.post(:tags, :name => tag_name) unless tag_name.blank?
- true
- end
-
end
end
\ No newline at end of file