Skip to content

Commit

Permalink
FIX Use canDelete, not the now-deleted canArchive
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Aug 15, 2024
1 parent 60fe554 commit 4c599dd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
4 changes: 1 addition & 3 deletions code/Controller/AssetAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -1082,9 +1082,7 @@ public function getObjectFromData(File $file, $thumbnailLinks = true)
$object['filename'] = $file->Filename;
$object['url'] = $file->AbsoluteURL;
$object['canEdit'] = $file->canEdit();
$object['canDelete'] = ($file->hasMethod('canArchive'))
? Deprecation::withNoReplacement(fn() => $file->canArchive())
: $file->canDelete();
$object['canDelete'] = $file->canDelete();

$owner = $file->Owner();

Expand Down
3 changes: 1 addition & 2 deletions code/GraphQL/Resolvers/AssetAdminResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ public static function resolveDeleteFiles($object, array $args, $context, Resolv
$deletedIDs = [];
$member = UserContextProvider::get($context);
foreach ($files as $file) {
$canArchive = Deprecation::withNoReplacement(fn() => $file->canArchive($member));
if ($canArchive) {
if ($file->canDelete($member)) {
$file->doArchive();
$deletedIDs[] = $file->ID;
}
Expand Down
8 changes: 0 additions & 8 deletions tests/php/Controller/AssetAdminTest/FileExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,6 @@ public function canDelete($member = null)
}
}

public function canArchive($member = null)
{
if ($this->owner->Name === 'disallowCanDelete.txt') {
return false;
}
return $this->owner->canDelete($member);
}


public function canCreate($member = null, $context = [])
{
Expand Down

0 comments on commit 4c599dd

Please sign in to comment.