Done Ticket GEPAFINBE-207 Updated the API to update the call status from Publish status to Draft.

This commit is contained in:
piyushkag
2025-04-10 18:07:21 +05:30
parent f379b954ed
commit c34b63b321
5 changed files with 34 additions and 26 deletions

View File

@@ -177,4 +177,5 @@ public interface ApplicationRepository extends JpaRepository<ApplicationEntity,
@Query("UPDATE ApplicationEntity a SET a.ndgStatus = NULL WHERE a.ndgStatus = :status")
void resetNdgStatusForInProgress(@Param("status") String status);
boolean existsByCallId(Long callId);
}