123456789101112131415161718192021 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- module Gql::Mutations
- class Form::UploadCache::Remove < BaseMutation
- include Gql::Mutations::Form::UploadCache::Concerns::HandlesAuthorization
- description 'Remove uploaded files for a form'
- argument :form_id, Gql::Types::FormIdType, 'FormID for the uploads.'
- argument :file_ids, [GraphQL::Types::ID], 'Files to be uploaded.'
- field :success, Boolean, null: false, description: 'Was the mutation successful?'
- def resolve(form_id:, file_ids:)
- cache = UploadCache.new(form_id)
- file_ids.map { |file_id| cache.remove_item(Gql::ZammadSchema.verified_object_from_id(file_id, type: ::Store).id) }
- { success: true }
- end
- end
- end
|