Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
3 changes: 3 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,9 @@ Loads and displays the package information.
'isModerated': p.isModerated,
if (p.moderatedAt != null)
'moderatedAt': p.moderatedAt?.toIso8601String(),
'isAdminDeleted': p.isAdminDeleted,
if (p.adminDeletedAt != null)
'adminDeletedAt': p.adminDeletedAt?.toIso8601String(),
},
};
},
Expand Down
3 changes: 3 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,9 @@ Loads and displays the package version information.
'isModerated': pv.isModerated,
if (pv.moderatedAt != null)
'moderatedAt': pv.moderatedAt?.toIso8601String(),
'isAdminDeleted': pv.isAdminDeleted,
if (pv.adminDeletedAt != null)
'adminDeletedAt': pv.adminDeletedAt?.toIso8601String(),
},
};
},
Expand Down
Loading