-
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
Hotfix 5.11.1 #1969
Hotfix 5.11.1 #1969
Conversation
… when inviting users
EPMRPP-89932 || Add possibility to configure autocomplete suggestions when inviting users
… when inviting users
… searching for users
@@ -121,7 +125,7 @@ void getUserNamesByIncorrectTerm() { | |||
|
|||
@Test | |||
void getUserNamesNegative() { | |||
ReportPortalException exception = assertThrows(ReportPortalException.class, () -> handler.getUserNames("", | |||
ReportPortalException exception = assertThrows(ReportPortalException.class, () -> handler.getUserNames("", UserRole.ADMINISTRATOR, |
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.
Line is longer than 100 characters (found 146).
@@ -121,7 +125,7 @@ | |||
|
|||
@Test | |||
void getUserNamesNegative() { | |||
ReportPortalException exception = assertThrows(ReportPortalException.class, () -> handler.getUserNames("", | |||
ReportPortalException exception = assertThrows(ReportPortalException.class, () -> handler.getUserNames("", UserRole.ADMINISTRATOR, |
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.
Line contains a tab character.
@@ -121,7 +125,7 @@ | |||
|
|||
@Test | |||
void getUserNamesNegative() { | |||
ReportPortalException exception = assertThrows(ReportPortalException.class, () -> handler.getUserNames("", | |||
ReportPortalException exception = assertThrows(ReportPortalException.class, () -> handler.getUserNames("", UserRole.ADMINISTRATOR, |
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.
'method def' child has incorrect indentation level 16, expected level should be 4.
Paths.get(PLUGINS_TEMP_PATH, NEW_PLUGIN_FILE_NAME))).thenThrow(new PluginException( | ||
"Manifest not found")); | ||
Paths.get(PLUGINS_TEMP_PATH, NEW_PLUGIN_FILE_NAME))).thenThrow( | ||
new PluginRuntimeException("Manifest not found")); |
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.
'new' has incorrect indentation level 8, expected level should be one of the following: 10, 12.
@@ -35,9 +35,9 @@ public interface PluginLoader { | |||
* | |||
* @param pluginPath Plugin's path | |||
* @return {@link PluginInfo} with {@link PluginInfo#getId()} and {@link PluginInfo#getVersion()} | |||
* @throws PluginException if there is an issue in loading the plugin or the plugin is not found in the specified path | |||
* @throws PluginRuntimeException if there is an issue in loading the plugin or the plugin is not found in the specified path |
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.
Line is longer than 100 characters (found 127).
return new CompositeFilterCondition(List.of(new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_USER), | ||
new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_FULL_NAME), | ||
new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_EMAIL) | ||
), Operator.AND); | ||
} | ||
|
||
private CompositeFilterCondition getUserSearchCondition(String value) { | ||
return new CompositeFilterCondition(List.of( | ||
new FilterCondition(Operator.OR, Condition.EQUALS, false, value, CRITERIA_EMAIL) |
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.
Line is longer than 100 characters (found 112).
return new CompositeFilterCondition(List.of(new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_USER), | ||
new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_FULL_NAME), | ||
new FilterCondition(Operator.OR, Condition.CONTAINS, false, value, CRITERIA_EMAIL) | ||
), Operator.AND); | ||
} | ||
|
||
private CompositeFilterCondition getUserSearchCondition(String value) { | ||
return new CompositeFilterCondition(List.of( | ||
new FilterCondition(Operator.OR, Condition.EQUALS, false, value, CRITERIA_EMAIL) |
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.
Line contains a tab character.
private CompositeFilterCondition getUserSearchCondition(String value) { | ||
return new CompositeFilterCondition(List.of( | ||
new FilterCondition(Operator.OR, Condition.EQUALS, false, value, CRITERIA_EMAIL) | ||
), Operator.AND); |
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.
Line contains a tab character.
return new CompositeFilterCondition(List.of( | ||
new FilterCondition(Operator.OR, Condition.EQUALS, false, value, CRITERIA_EMAIL) | ||
), Operator.AND); | ||
} |
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.
Line contains a tab character.
return new CompositeFilterCondition(List.of( | ||
new FilterCondition(Operator.OR, Condition.EQUALS, false, value, CRITERIA_EMAIL) | ||
), Operator.AND); | ||
} |
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.
'method def rcurly' has incorrect indentation level 8, expected level should be 2.
No description provided.