release 0.1 #30

Manually merged
noemi3 merged 150 commits from release/0.1 into master 2020-01-18 14:59:02 +00:00
2 changed files with 34 additions and 0 deletions
Showing only changes of commit 1cac40cf10 - Show all commits

View File

@ -0,0 +1,17 @@
package wekan.wrapper.api;
import retrofit2.Call;
import retrofit2.http.*;
import wekan.wrapper.entity.WList;
import java.util.List;
public interface ListService {
@GET("/api/boards/{board}/lists")
Call<List<WList>> getAllList(@Path("board") String boardId);
@POST("/api/boards/{board}/lists")
Call<WList> newList(@Path("board") String board, @Body String title);
}

View File

@ -0,0 +1,17 @@
package wekan.wrapper.entity;
import com.google.gson.annotations.SerializedName;
public class WList {
@SerializedName("_id")
private String id;
private String title;
@Override
public String toString() {
return "WList{" +
"id='" + id + '\'' +
", title='" + title + '\'' +
'}';
}
}