summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/admin/sidekiq_queues/delete_jobs.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/mutations/admin/sidekiq_queues/delete_jobs.rb')
-rw-r--r--app/graphql/mutations/admin/sidekiq_queues/delete_jobs.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/mutations/admin/sidekiq_queues/delete_jobs.rb b/app/graphql/mutations/admin/sidekiq_queues/delete_jobs.rb
index 17f9b5b5637..32ca6de9b96 100644
--- a/app/graphql/mutations/admin/sidekiq_queues/delete_jobs.rb
+++ b/app/graphql/mutations/admin/sidekiq_queues/delete_jobs.rb
@@ -18,12 +18,12 @@ module Mutations
argument :queue_name,
GraphQL::STRING_TYPE,
required: true,
- description: 'The name of the queue to delete jobs from'
+ description: 'The name of the queue to delete jobs from.'
field :result,
Types::Admin::SidekiqQueues::DeleteJobsResponseType,
null: true,
- description: 'Information about the status of the deletion request'
+ description: 'Information about the status of the deletion request.'
def ready?(**args)
unless current_user&.admin?