Skip to content
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

add login method in AuthenticationService and findByEmail method in U… #1107

Closed
wants to merge 2 commits into from

Conversation

jekaGr
Copy link

@jekaGr jekaGr commented Sep 25, 2024

…serService

Copy link

@ahoienko ahoienko left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very nice) Lets improve your solution a bit

@@ -11,6 +13,15 @@ public class AuthenticationService {
* Return false in any other cases.
*/
public boolean login(String email, String password) {
return false;
User user = new User(email,password);
UserService userService = new UserService();

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be class level field

Comment on lines 19 to 21
if (userService.findByEmail(user.getEmail()) != null
&& userService.findByEmail(user.getEmail()).getPassword().equals(user
.getPassword())) {

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code duplication (userService.findByEmail)

@jekaGr jekaGr closed this Sep 25, 2024
@jekaGr jekaGr deleted the hw-1 branch September 25, 2024 19:25
@jekaGr jekaGr restored the hw-1 branch September 25, 2024 19:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants