refactor(server): use date type for entities (#2602)

This commit is contained in:
Michel Heusschen
2023-05-30 15:15:56 +02:00
committed by GitHub
parent 3d505e425d
commit 789e3e3924
49 changed files with 243 additions and 217 deletions

View File

@@ -36,7 +36,7 @@ void main() {
// TODO
});
// String createdAt
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});

View File

@@ -36,12 +36,12 @@ void main() {
// TODO
});
// String createdAt
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// String updatedAt
// DateTime updatedAt
test('to test the property `updatedAt`', () async {
// TODO
});

View File

@@ -26,12 +26,12 @@ void main() {
// TODO
});
// String createdAt
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// String updatedAt
// DateTime updatedAt
test('to test the property `updatedAt`', () async {
// TODO
});

View File

@@ -21,7 +21,7 @@ void main() {
// TODO
});
// String expiresAt
// DateTime expiresAt
test('to test the property `expiresAt`', () async {
// TODO
});

View File

@@ -21,7 +21,7 @@ void main() {
// TODO
});
// String expiresAt
// DateTime expiresAt
test('to test the property `expiresAt`', () async {
// TODO
});

View File

@@ -41,12 +41,12 @@ void main() {
// TODO
});
// String createdAt
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// String expiresAt
// DateTime expiresAt
test('to test the property `expiresAt`', () async {
// TODO
});

View File

@@ -41,11 +41,6 @@ void main() {
// TODO
});
// String createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// String profileImagePath
test('to test the property `profileImagePath`', () async {
// TODO
@@ -61,12 +56,17 @@ void main() {
// TODO
});
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// DateTime deletedAt
test('to test the property `deletedAt`', () async {
// TODO
});
// String updatedAt
// DateTime updatedAt
test('to test the property `updatedAt`', () async {
// TODO
});