bitbucket_rest_api2 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bitbucket_rest_api/user.rb +3 -3
- data/lib/bitbucket_rest_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28b1659fe3ae31430e5073167f414165dcf077e00d8e9423837396063d529a6a
|
4
|
+
data.tar.gz: 457fc2f0e7e66ed59813c5a38674a418b7763da6d4b0b1a1c20c2ad64866826f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5641d0d4d4e0e93fddcccd8ff80948d7932ddc7a5e5b8d6cbad4f61eba056e24d5a75c215a63f2597010f04c806f12e65096f45e1a962d0143bdd7c50b4d590c
|
7
|
+
data.tar.gz: 5e8b73c0db08b157ef4c20ba5f4a6f4ed68182ed1f01054d468eea0ba7f5b1a2e99a047defb1b8ec701c1960505d0176132fa41ce522c85b180af5768c98ced9
|
@@ -75,7 +75,7 @@ module BitBucket
|
|
75
75
|
# or has at least read access to.
|
76
76
|
# Use this if you're looking for a full list of all of the repositories associated with a user.
|
77
77
|
def repositories
|
78
|
-
get_request("/2.0/repositories")
|
78
|
+
get_request("/2.0/user/repositories")
|
79
79
|
end
|
80
80
|
|
81
81
|
alias :repos :repositories
|
@@ -86,7 +86,7 @@ module BitBucket
|
|
86
86
|
# Gets a list of the repositories the account follows.
|
87
87
|
# This is the same list that appears on the Following tab on your account dashboard.
|
88
88
|
def overview
|
89
|
-
get_request("/2.0/repositories/overview")
|
89
|
+
get_request("/2.0/user/repositories/overview")
|
90
90
|
end
|
91
91
|
|
92
92
|
|
@@ -94,7 +94,7 @@ module BitBucket
|
|
94
94
|
# GET the list of repositories on the dashboard
|
95
95
|
# Gets the repositories list from the account's dashboard.
|
96
96
|
def dashboard
|
97
|
-
get_request("/2.0/repositories/dashboard")
|
97
|
+
get_request("/2.0/user/repositories/dashboard")
|
98
98
|
end
|
99
99
|
|
100
100
|
end # User
|