File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/scala/com/codacy/client/bitbucket/v2/service Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ class RepositoryServices(client: BitbucketClient) {
10
10
* Gets the list of the user's repositories. Private repositories only appear on this list
11
11
* if the caller is authenticated and is authorized to view the repository.
12
12
*/
13
- def getRepositories (username : String ): RequestResponse [Seq [Repository ]] = {
14
- client.executePaginated(Request (s " https://bitbucket.org/api/2.0/repositories/ $username " , classOf [Seq [Repository ]]))
13
+ def getRepositories (owner : String ): RequestResponse [Seq [Repository ]] = {
14
+ client.executePaginated(Request (s " https://bitbucket.org/api/2.0/repositories/ $owner " , classOf [Seq [Repository ]]))
15
15
}
16
16
17
17
def createKey (
You can’t perform that action at this time.
0 commit comments