Github user sagar15795 commented on a diff in the pull request:
https://github.com/apache/incubator-taverna-mobile/pull/72#discussion_r180369882
--- Diff:
app/src/main/java/org/apache/taverna/mobile/data/remote/TavernaService.java ---
@@ -40,7 +40,7 @@
public interface TavernaService {
- @GET(APIEndPoint.ALL_ANNOUNCEMENT)
+ @GET(APIEndPoint.ALL_ANNOUNCEMENT + "?order=reverse")
--- End diff --
Yes, it is the static query. But we have to always define all query param
at one place only so that if we need to debug then we can track it easily.
---