This page shows each individual file you've uploaded. This is different from the regular uploads page because files in multi-file uploads are not grouped together.
8 lines
161 B
Ruby
8 lines
161 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UploadMediaAssetPolicy < ApplicationPolicy
|
|
def show?
|
|
user.is_admin? || record.upload.uploader_id == user.id
|
|
end
|
|
end
|