fix: coderabbitai comments

This commit is contained in:
Mustaque Ahmed
2025-10-14 15:48:02 +05:30
parent 391336e080
commit 2bf0529f85
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1124,7 +1124,7 @@ App::get('/v1/storage/buckets/:bucketId/files/:fileId/preview')
// Update transformedAt only when image transformations are allowed
// Do not count Console/privileged requests — we only want to record
// transformedAt for actual API uses.
$allowTransformations = $bucket->getAttribute('transformations', true);
$allowTransformations = $bucket->getAttribute('imageTransformations', true);
$isPrivilegedUser = Auth::isPrivilegedUser(Authorization::getRoles());
if ($allowTransformations && !$isPrivilegedUser) {
$transformedAt = $file->getAttribute('transformedAt', '');
+1 -1
View File
@@ -590,7 +590,7 @@ App::init()
// Only proceed for preview when not disabled; other routes unaffected
// Skip the block only when transformations remain enabled.
if ($isImageTransformation && $isTransformationsBlocked) {
if ($isImageTransformation && $isTransformationsBlocked && !$isPrivilegedUser) {
throw new Exception(Exception::STORAGE_TRANSFORMATIONS_DISABLED);
}