mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-06-06 09:52:17 +00:00
Synchronizing API and documentation updates
This commit is contained in:
@@ -309,6 +309,8 @@ public interface UserApi {
|
||||
/**
|
||||
* List the current user's tracked times
|
||||
*
|
||||
* @param page page number of results to return (1-based) (optional)
|
||||
* @param limit page size of results (optional)
|
||||
* @param since Only show times updated after the given time. This is a timestamp in RFC 3339
|
||||
* format (optional)
|
||||
* @param before Only show times updated before the given time. This is a timestamp in RFC 3339
|
||||
@@ -317,7 +319,10 @@ public interface UserApi {
|
||||
*/
|
||||
@GET("user/times")
|
||||
Call<List<TrackedTime>> userCurrentTrackedTimes(
|
||||
@retrofit2.http.Query("since") Date since, @retrofit2.http.Query("before") Date before);
|
||||
@retrofit2.http.Query("page") Integer page,
|
||||
@retrofit2.http.Query("limit") Integer limit,
|
||||
@retrofit2.http.Query("since") Date since,
|
||||
@retrofit2.http.Query("before") Date before);
|
||||
|
||||
/**
|
||||
* delete an access token
|
||||
|
||||
Reference in New Issue
Block a user