resolved conflicts
This commit is contained in:
@@ -17,4 +17,7 @@ public interface FlowDataRepository extends JpaRepository<FlowDataEntity,Long> {
|
||||
public Optional<FlowDataEntity> findByChoosenValueAndFormIdIn(String fieldValue, List<Long> nextFormIds);
|
||||
|
||||
public List<FlowDataEntity> findByFormIdInAndCallId(List<Long> previousFormIds, Long callId);
|
||||
|
||||
public FlowDataEntity findByFormIdAndChoosenField(Long formId, String choosenField);
|
||||
|
||||
}
|
||||
|
||||
@@ -10,4 +10,6 @@ import java.util.List;
|
||||
public interface FormRepository extends JpaRepository<FormEntity,Long> {
|
||||
|
||||
List<FormEntity> findByCallId(Long callId);
|
||||
|
||||
List<FormEntity> findByIdIn(List<Long> formId);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user