fix TestResource

This commit is contained in:
Max W. 2024-06-17 20:52:18 +02:00
parent d1710a2a9c
commit d62f2c25b9

View File

@ -18,6 +18,6 @@ public class TestResource {
@Produces(MediaType.TEXT_PLAIN) @Produces(MediaType.TEXT_PLAIN)
public RestResponse<String> test() { public RestResponse<String> test() {
testRepo.insert("testString"); testRepo.insert("testString");
return RestResponse.ResponseBuilder.ok("test").build(); return RestResponse.ResponseBuilder.ok("Inserted testString into db.").build();
} }
} }