We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47c60fb commit af16cf8Copy full SHA for af16cf8
lib/bitbucket_rest_api/team.rb
@@ -24,5 +24,11 @@ def members(team_name)
24
response["values"].each { |el| yield el }
25
end
26
27
+ def followers(team_name)
28
+ response = get_request("/2.0/teams/#{team_name.to_s}/followers")
29
+ return response unless block_given?
30
+ response["values"].each { |el| yield el }
31
+ end
32
+
33
end # Users
34
end # BitBucket
0 commit comments