fssa-batch3 / fssa-batch3/sec_a_kamalesh.srinivasan__corejava_project_2
User module | Login Feature
- Dominant language
- Java
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
### User Flow
As a user. I want to login with my email and password. This will allow me to login with my email and password. I expect this will redirect to me a home page if the email and password is valid.
DAO:
- [x] findUserByEmail
Service:
- [x] loginUser
Test:
TestLoginFeature
- [x] testLoginSuccess
- [x] testloginFailed
DAO:
- [x] createJob
Service:
- [x] createJob
Service Test:
- [x] createValidJob
- [x] createInvalidJob
### User Flow
```mermaid
graph TD;
A[Service :Login user] --> C[Validation];
C --> D{Enter Email and Password};
D --> E{Credentials Correct?};
E -->|Yes| F[Login Successful];
E -->|No| G[Invalid email and password];
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.