forked from tom.biard/ScienceQuest
Modification schema base pour ajouter un status et une date de création sur les parties + ajout fonction création uid pour codeInvitation + création controller Invite + Jeu + création nouveau DTO + 3 exceptions + InviteService
parent
aa61035391
commit
e0ca2c700c
@ -0,0 +1,2 @@
|
|||||||
|
package fr.iut.sciencequest.sae.controllers;public class InviteController {
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
package fr.iut.sciencequest.sae.controllers;public class JeuController {
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
package fr.iut.sciencequest.sae.controllers.request;public class PartieRequest {
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
package fr.iut.sciencequest.sae.dto.partie;public class PartieNewDTO {
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
package fr.iut.sciencequest.sae.exceptions;public class PartyAlreadyStartedException {
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
package fr.iut.sciencequest.sae.exceptions.notFound;public class InviteNotFoundException {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package fr.iut.sciencequest.sae.exceptions.notFound;
|
||||||
|
|
||||||
|
public class DifficulteNotFoundException extends EntityNotFoundException{
|
||||||
|
public DifficulteNotFoundException(int id) {
|
||||||
|
super("Difficulté", id);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,2 @@
|
|||||||
|
package fr.iut.sciencequest.sae.services;public class InviteService {
|
||||||
|
}
|
Loading…
Reference in new issue