1
0
forked from PGL/Clyde

Fix le truc de max et ajoute le test du delete

This commit is contained in:
2024-03-18 15:55:38 +01:00
parent 9744bd973f
commit c7f37b0854
2 changed files with 14 additions and 2 deletions

View File

@ -11,6 +11,4 @@ import java.util.ArrayList;
public interface FileRepository extends CrudRepository<StorageFile,Long> {
public StorageFile getStorageFileByName(String name);
@Query("select s from StorageFile s")
public ArrayList<StorageFile> findAll();
}