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 committed by Dominik Säume
parent 28c5f8bbf3
commit ec843eb946
Signed by: SZUT-Dominik
GPG key ID: 67D15BB250B41E7C

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);
}