Added commisions endponts

This commit is contained in:
Filip Izydorczyk
2020-09-30 17:46:04 +02:00
parent b4d1c87461
commit b503ebcbcc
6 changed files with 58 additions and 22 deletions

View File

@ -48,5 +48,13 @@ public class App {
mac.setSurname("Głowacki");
mac.setRole(UserRoles.STUDENT);
this.userService.save(mac);
User mar = new User();
mar.setEmail("marwoz16@st.amu.edu.pl");
mar.setName("Marcin");
mar.setSurname("Woźniak");
mar.setRole(UserRoles.STUDENT);
this.userService.save(mar);
}
}