fix: name coherence + test logic
This commit is contained in:
@ -106,9 +106,8 @@ public class SectionCellService {
|
||||
return this.sectionCellRepository.save(sectionCell.get());
|
||||
}
|
||||
|
||||
public Iterable<SectionCell> getSectionCellsByProject(Project project, Long idSectionCell) {
|
||||
return this.sectionCellRepository.findByProjectSectionCellAndSectionId(
|
||||
project, idSectionCell);
|
||||
public Iterable<SectionCell> getSectionCellsByProject(Project project, Long sectionId) {
|
||||
return this.sectionCellRepository.findByProjectSectionCellAndSectionId(project, sectionId);
|
||||
}
|
||||
|
||||
public Long getProjectId(Long sectionCellId) {
|
||||
|
Reference in New Issue
Block a user