Skip to content

Commit 75dea9c

Browse files
authored
changing dates to iso strings (#71)
1 parent 66a59f5 commit 75dea9c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/main/java/com/redhat/labs/omp/models/CreationDetails.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package com.redhat.labs.omp.models;
22

3-
import java.time.LocalDateTime;
4-
53
import lombok.AllArgsConstructor;
64
import lombok.Builder;
75
import lombok.Data;
@@ -15,6 +13,6 @@ public class CreationDetails {
1513

1614
private String createdByUser;
1715
private String createdByEmail;
18-
private LocalDateTime createdOn;
16+
private String createdOn;
1917

2018
}

src/main/java/com/redhat/labs/omp/models/Launch.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
package com.redhat.labs.omp.models;
22

3-
import java.time.LocalDateTime;
4-
53
import lombok.AllArgsConstructor;
64
import lombok.Builder;
75
import lombok.Data;
@@ -13,7 +11,7 @@
1311
@AllArgsConstructor
1412
public class Launch {
1513

16-
private LocalDateTime launchedDateTime;
14+
private String launchedDateTime;
1715
private String launchedBy;
1816

1917
}

0 commit comments

Comments
 (0)