PMT-16: Add Method to Check if Project with Name Exists to ProjectRepository

This commit is contained in:
Rajbir Singh 2024-10-07 15:55:53 +02:00
parent af3b3108e9
commit 33cd8dae39

View file

@ -3,4 +3,5 @@ package de.hmmh.pmt.db;
import org.springframework.data.jpa.repository.JpaRepository;
public interface ProjectRepository extends JpaRepository<Project, Long> {
boolean existsByName(String name);
}