-
Notifications
You must be signed in to change notification settings - Fork 0
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
Development #1
Open
kazi-sahabuddin
wants to merge
25
commits into
main
Choose a base branch
from
development
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Development #1
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
d7ac4a2
feat:signup template design implemented
kazi-sahabuddin 1b321f9
feat: user registration in progress
kazi-sahabuddin ec9f2a9
feat: server validation implemented
kazi-sahabuddin 88c4e64
feat: server side validation fully implemented
kazi-sahabuddin ac91e36
feat: spring security initiated
kazi-sahabuddin 6579bea
feat: spring security
kazi-sahabuddin 383dead
feat: user dashboard
kazi-sahabuddin 2b593af
feat:user dashboard design compleleted
kazi-sahabuddin 4eaab5c
feat: add contact
kazi-sahabuddin 8bc8334
feat: add contact implemented
kazi-sahabuddin fd8364f
feat: images upload implemented
kazi-sahabuddin 1185c51
feat: view contacts ongoing
kazi-sahabuddin 8e27300
feat: view contacts implemented
kazi-sahabuddin 6795a24
pagination
kazi-sahabuddin bd60921
pagination completed
kazi-sahabuddin f47b9b2
feat: showing single contact details
kazi-sahabuddin ba5a4af
feat: contact delete feature implemented
kazi-sahabuddin 924dccf
feat:contact update
kazi-sahabuddin efdbc6f
feat: user profile
kazi-sahabuddin b2900e9
fix: some link
kazi-sahabuddin 68b92da
feat: search contact by name
kazi-sahabuddin 31fd4df
feat: password change
kazi-sahabuddin 9c49849
feat: implementing forget password in progress
kazi-sahabuddin f798135
feat:otp send using email in progress
kazi-sahabuddin b2e2087
fix: otp with emial sending success
kazi-sahabuddin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/main/java/com/sahabuddin/contactmanager/helper/Message.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.sahabuddin.contactmanager.helper; | ||
|
||
import lombok.*; | ||
|
||
@Getter | ||
@Setter | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
@ToString | ||
public class Message { | ||
|
||
private String content; | ||
private String type; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Write a function in UserService to register user. Call this function from this controller.