Skip to content
Snippets Groups Projects
Commit cf47d415 authored by Annika Geßmann's avatar Annika Geßmann
Browse files

controller

parent 4d583ec0
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ package thinkTogether.groupManagement.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import thinkTogether.groupManagement.model.Learninggroup;
import thinkTogether.groupManagement.repo.IGroupRepository;
import thinkTogether.groupManagement.repo.GroupRepository;
import java.util.List;
......@@ -12,9 +12,9 @@ import java.util.List;
// Verwendet das Repository und gibt die Daten zurück
public class GroupManagementController {
private final IGroupRepository groupRepository;
private final GroupRepository groupRepository;
public GroupManagementController(IGroupRepository groupRepository) {
public GroupManagementController(GroupRepository groupRepository) {
this.groupRepository = groupRepository;
}
......
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