lib/whatser/resources/follow.rb in whatser-0.6.0 vs lib/whatser/resources/follow.rb in whatser-0.6.1
- old
+ new
@@ -8,9 +8,13 @@
class << self
def list(opts={})
api_request :get, "/api/follows", {:query => opts}
end
+ def followers(id, opts={})
+ api_request :get, "/api/users/#{id}/followers", {:query => opts}
+ end
+
def suggested(opts={})
api_request :get, "/api/users/suggested", {:query => opts}
end
def create(user_id, opts={})
\ No newline at end of file