Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/lib/admin/actions/package_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ Loads and displays the package information.
'isModerated': p.isModerated,
if (p.moderatedAt != null)
'moderatedAt': p.moderatedAt?.toIso8601String(),
if (p.adminDeletedAt != null)
'adminDeletedAt': p.adminDeletedAt?.toIso8601String(),
},
};
},
Expand Down
2 changes: 2 additions & 0 deletions app/lib/admin/actions/package_version_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ Loads and displays the package version information.
'isModerated': pv.isModerated,
if (pv.moderatedAt != null)
'moderatedAt': pv.moderatedAt?.toIso8601String(),
if (pv.adminDeletedAt != null)
'moderatedAt': pv.adminDeletedAt?.toIso8601String(),
},
};
},
Expand Down