Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 40ed0103 authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

refactor: remove unused method from previous MR than is useless due to another MR

parent ea7bc493
Loading
Loading
Loading
Loading
Loading
+0 −15
Original line number Diff line number Diff line
@@ -37,19 +37,4 @@ interface GitLabReleaseInfoApi {
    suspend fun getReleases(
        @Path("projectId") projectId: Int,
    ): Response<List<GitLabReleaseInfo>>


    @GET("{projectId}/releases/{gitlabTag}/downloads/json/{releaseType}.json")
    suspend fun getSystemAppInfoByTag(
        @Path("projectId") projectId: Int,
        @Path("gitlabTag") gitlabTag: String,
        @Path("releaseType") releaseType: String,
    ): Response<SystemAppInfo>


    @GET("{projectId}/releases/permalink/latest/downloads/json/{releaseType}.json")
    suspend fun getLatestSystemAppInfo(
        @Path("projectId") projectId: Int,
        @Path("releaseType") releaseType: String,
    ): Response<SystemAppInfo>
}