Skip to content

Commit

Permalink
Fixed getCalls?
Browse files Browse the repository at this point in the history
  • Loading branch information
IHFSchwarz committed Mar 9, 2018
1 parent 7a7cf1c commit 63b3ead
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'de.dap4j.hampager'
version '1.0.1'
version '1.0.2'

apply plugin: 'java'
apply plugin: 'java-library'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/de/hampager/dap4j/DAPNETAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public interface DAPNETAPI {
//CallResource
//Call without name to get all calls (admin only)
@GET("calls/{ownerName}")
Call<List<CallResource>> getCalls(@Query("ownerName") String name);
Call<List<CallResource>> getCalls(@Path("ownerName") String name);

@POST("calls")
Call<CallResource> postCall(@Body CallResource callResource);
Expand Down

0 comments on commit 63b3ead

Please sign in to comment.