forked from thoughtworks/HeartBeat
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ADM-953 [frontend][backend]: add timezone to request body and re-calc…
…ulate and refactor (#1471) * ADM-953 [frontend][backend]: add timezone to request body and re-calculate and refactor * ADM-953 [frontend]: fix e2e test, set chrome default timezone is Asia/Shanghai * ADM-953 [frontend]: delete the experiment code * ADM-953 [frontend]: fix sonar issue * ADM-953 [frontend]: fix comment * ADM-953 [frontend]: fix comment
- Loading branch information
1 parent
22f65b1
commit b9c052d
Showing
29 changed files
with
470 additions
and
281 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
26 changes: 26 additions & 0 deletions
26
backend/src/main/java/heartbeat/service/board/jira/JiraBoardInfo.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,26 @@ | ||
package heartbeat.service.board.jira; | ||
|
||
import heartbeat.client.dto.board.jira.JiraCard; | ||
import heartbeat.controller.board.dto.request.RequestJiraBoardColumnSetting; | ||
import heartbeat.controller.board.dto.response.TargetField; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
import java.net.URI; | ||
import java.util.List; | ||
|
||
@Data | ||
@Builder | ||
public class JiraBoardInfo { | ||
|
||
private List<RequestJiraBoardColumnSetting> boardColumns; | ||
|
||
private List<String> users; | ||
|
||
private URI baseUrl; | ||
|
||
private List<JiraCard> allDoneCards; | ||
|
||
private List<TargetField> targetFields; | ||
|
||
} |
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
Oops, something went wrong.