Skip to content
Snippets Groups Projects
Commit 301621f7 authored by Martin Staehr's avatar Martin Staehr
Browse files

fix: fix injection

parent ba2f55c4
No related branches found
No related tags found
No related merge requests found
......@@ -42,7 +42,7 @@ public class GFApplicationBinder extends AbstractBinder {
bind(DummyResearchReportManagement.class).to(ResearchReportManagement.class);
bind(TestList.class).to(TestListInterface.class);
bind(DummyGroupfinding.class).to(IGroupFinding.class);
bind(DummyProjectCreationService.class);
bind(DummyProjectCreationService.class).to(DummyProjectCreationService.class);
bind(UserDAO.class).to(UserDAO.class);
bind(ProjectDAO.class).to(ProjectDAO.class);
bind(GroupDAO.class).to(GroupDAO.class);
......
......@@ -17,6 +17,7 @@ public class DummyProjectCreationView {
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/create")
public Response createDummyProject() {
boolean success = dummyProjectCreationService.createExampleProject();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment