Skip to content
Snippets Groups Projects
Unverified Commit 0963eb28 authored by Noah Prail's avatar Noah Prail
Browse files

Repository tree per_page set to 1000 to fix #293. At least for a temp fix.

parent f0f31076
No related branches found
No related tags found
No related merge requests found
Pipeline #
Loading
Loading
@@ -93,6 +93,7 @@ android {
 
packagingOptions {
exclude 'META-INF/MANIFEST.MF'
exclude 'META-INF/app_fdroidDebug.kotlin_module'
}
}
 
Loading
Loading
Loading
Loading
@@ -289,7 +289,7 @@ interface GitLabService {
@GET(API_VERSION + "/projects/{id}/repository/contributors")
fun getContributors(@Path("id") projectId: String): Single<List<Contributor>>
 
@GET(API_VERSION + "/projects/{id}/repository/tree")
@GET(API_VERSION + "/projects/{id}/repository/tree?per_page=1000")
fun getTree(@Path("id") projectId: Long,
@Query("ref_name") branchName: String?,
@Query("path") path: String?): Single<List<RepositoryTreeObject>>
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment