generated from cepdnaclk/eYY-XXX-project-template
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from rash0621/main
project management
- Loading branch information
Showing
8,498 changed files
with
3,499,376 additions
and
124 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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
16 changes: 16 additions & 0 deletions
16
back-end/src/main/java/com/example/demo/appuser/EmailRequest.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,16 @@ | ||
package com.example.demo.appuser; | ||
|
||
public class EmailRequest { | ||
private String email; | ||
|
||
// Getters and setters | ||
public String getEmail() { | ||
return email; | ||
} | ||
|
||
public void setEmail(String email) { | ||
this.email = email; | ||
} | ||
} | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package com.example.demo.task; | ||
|
||
import com.example.demo.appuser.AppUser; | ||
|
||
import java.util.Optional; | ||
import java.util.Set; | ||
|
||
public class TaskDTO { | ||
|
||
private Task task; | ||
private Set<AppUser> assignedUsers; | ||
|
||
public Task getTask() { | ||
return task; | ||
} | ||
|
||
public void setTask(Task task) { | ||
this.task = task; | ||
} | ||
|
||
public Set<AppUser> getTaskMembers(){ | ||
return assignedUsers; | ||
} | ||
|
||
public void setAssignedUsers(Set<AppUser> assignedUsers) { | ||
this.assignedUsers = assignedUsers; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,53 @@ | ||
server: | ||
error: | ||
include-message: always | ||
include-binding-errors: always | ||
|
||
spring: | ||
datasource: | ||
url: jdbc:mysql://localhost:3306/cycle | ||
password: | ||
username: root | ||
driver-class-name: com.mysql.cj.jdbc.Driver | ||
jpa: | ||
hibernate: | ||
ddl-auto: update | ||
properties: | ||
hibernate: | ||
dialect: org.hibernate.dialect.MySQLDialect | ||
format_sql: true | ||
show-sql: true | ||
|
||
mail: | ||
host: localhost | ||
port: 1025 | ||
username: hello | ||
password: hello | ||
properties: | ||
mail: | ||
smtp: | ||
ssl: | ||
trust: "*" | ||
auth: true | ||
starttls: | ||
enable: true | ||
connection timeout: 5000 | ||
timeout: 3000 | ||
write timeout: 5000 | ||
|
||
servlet: | ||
multipart: | ||
max-file-size: 100MB # Increase size for large files | ||
max-request-size: 100MB # Increase size for large files | ||
|
||
tomcat: | ||
max-http-header-size: 16384 # Adjust if needed for large headers | ||
max-swallow-size: 104857600 # 100MB, adjust according to file size needs | ||
server: | ||
error: | ||
include-message: always | ||
include-binding-errors: always | ||
|
||
spring: | ||
datasource: | ||
url: jdbc:mysql://localhost:3306/cycle | ||
password: "&*531cW9/?" | ||
username: root | ||
driver-class-name: com.mysql.cj.jdbc.Driver | ||
jpa: | ||
hibernate: | ||
ddl-auto: update | ||
properties: | ||
hibernate: | ||
dialect: org.hibernate.dialect.MySQLDialect | ||
format_sql: true | ||
show-sql: true | ||
|
||
mail: | ||
host: localhost | ||
port: 1025 | ||
username: hello | ||
password: hello | ||
properties: | ||
mail: | ||
smtp: | ||
ssl: | ||
trust: "*" | ||
auth: true | ||
starttls: | ||
enable: true | ||
connection timeout: 5000 | ||
timeout: 3000 | ||
write timeout: 5000 | ||
|
||
security: | ||
oauth2: | ||
client: | ||
registration: | ||
google: | ||
client-id: "257276141541-av8vs5jp5u7e9f3am8dllo761kg7abo8.apps.googleusercontent.com" | ||
client-secret: "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" | ||
|
||
servlet: | ||
multipart: | ||
max-file-size: 100MB # Increase size for large files | ||
max-request-size: 100MB # Increase size for large files | ||
|
||
tomcat: | ||
max-http-header-size: 16384 # Adjust if needed for large headers | ||
max-swallow-size: 104857600 # 100MB, adjust according to file size needs |
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.