feat: switched from String to ProjectDecisionValues
All checks were successful
Format / formatting (push) Successful in 6s
Build / build (push) Successful in 30s
CI / build (push) Successful in 15s

This commit is contained in:
Pierre Tellier
2025-03-12 10:21:08 +01:00
parent ef964c4d35
commit e011a5534e
6 changed files with 37 additions and 17 deletions

View File

@ -10,5 +10,5 @@ import org.springframework.data.rest.core.annotation.RepositoryRestResource;
public interface ProjectRepository extends JpaRepository<Project, Long> {
Iterable<Project> findByProjectAdministrator(Administrator administrator);
Iterable<Project> findByProjectStatus(String status);
Iterable<Project> findByProjectStatus(Long status);
}