-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EPMRPP-89420 implement organizations sort and filter #1929
Conversation
src/main/java/com/epam/ta/reportportal/core/organization/GetOrganizationHandler.java
Outdated
Show resolved
Hide resolved
src/main/java/com/epam/ta/reportportal/core/organization/GetOrganizationHandler.java
Show resolved
Hide resolved
|
||
@Autowired | ||
public CreateProjectHandlerImpl(PersonalProjectService personalProjectService, | ||
ProjectRepository projectRepository, UserRepository userRepository, | ||
AttributeRepository attributeRepository, IssueTypeRepository issueTypeRepository, | ||
ApplicationEventPublisher applicationEventPublisher, | ||
ProjectUserRepository projectUserRepository, OrganizationRepository organizationRepository) { | ||
ProjectUserRepository projectUserRepository, | ||
OrganizationRepositoryCustom organizationRepositoryCustom) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Usage of a Custom repository looks a little bit strange for me, can't we extend OrganizationRepositoryCustom from OrganizationRepository and use it as an interface? If we can't, then this is OK for me
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this case we have to provide read-only access to the database. OrganizationRepository will open access to all CRUD operations
No description provided.