-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
… Local Storage Persistence #18, Home Route Definition #16, Product Backlog Route Definition #17, Implement Spinner in Login Page #21. Co-authored-by: ajuliamm <[email protected]> Co-authored-by: CaiquePrado <[email protected]> Co-authored-by: ChaiCaroline <[email protected]>
- Loading branch information
1 parent
aaeed32
commit d85b518
Showing
22 changed files
with
496 additions
and
138 deletions.
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
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
67 changes: 67 additions & 0 deletions
67
...r-back-end/scrum-tracker-api/src/main/java/com/db/scrumtrackerapi/model/TokenMessage.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,67 @@ | ||
package com.db.scrumtrackerapi.model; | ||
import java.util.Objects; | ||
|
||
public class TokenMessage { | ||
private String Token; | ||
private String name; | ||
private String lastName; | ||
|
||
protected TokenMessage() { | ||
} | ||
|
||
public TokenMessage(String Token, String name, String lastName) { | ||
this.Token = Token; | ||
this.name = name; | ||
this.lastName = lastName; | ||
} | ||
|
||
public String getToken() { | ||
return this.Token; | ||
} | ||
|
||
public void setToken(String Token) { | ||
this.Token = Token; | ||
} | ||
|
||
public String getName() { | ||
return this.name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getLastName() { | ||
return this.lastName; | ||
} | ||
|
||
public void setLastName(String lastName) { | ||
this.lastName = lastName; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (o == this) | ||
return true; | ||
if (!(o instanceof TokenMessage)) { | ||
return false; | ||
} | ||
TokenMessage tokenMessage = (TokenMessage) o; | ||
return Objects.equals(Token, tokenMessage.Token) && Objects.equals(name, tokenMessage.name) && Objects.equals(lastName, tokenMessage.lastName); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(Token, name, lastName); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "{" + | ||
" Token='" + getToken() + "'" + | ||
", name='" + getName() + "'" + | ||
", lastName='" + getLastName() + "'" + | ||
"}"; | ||
} | ||
|
||
} |
34 changes: 0 additions & 34 deletions
34
...nd/scrum-tracker-api/src/main/java/com/db/scrumtrackerapi/security/config/CorsConfig.java
This file was deleted.
Oops, something went wrong.
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
6 changes: 6 additions & 0 deletions
6
scrum-tracker-back-end/scrum-tracker-api/src/main/resources/banner.txt
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,6 @@ | ||
/=\ /=\ | | ||
\ /=: /= | | /=\=\ | /= /=| /=: =/ /=\ /= | ||
\=/ \=: | \=/ | | | | | \=| \=: |\ \= | | ||
|
||
Scrum Tracker v1.0.0 | ||
Powered by Spring Boot v3.1.5 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Oops, something went wrong.