debian-mirror-gitlab/app/graphql/mutations/incident_management/timeline_event/update.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
946 B
Ruby
Raw Normal View History

2022-07-16 23:28:13 +05:30
# frozen_string_literal: true
module Mutations
module IncidentManagement
module TimelineEvent
class Update < Base
graphql_name 'TimelineEventUpdate'
argument :id, ::Types::GlobalIDType[::IncidentManagement::TimelineEvent],
required: true,
description: 'ID of the timeline event to update.'
argument :note, GraphQL::Types::String,
required: false,
description: 'Text note of the timeline event.'
argument :occurred_at, Types::TimeType,
required: false,
description: 'Timestamp when the event occurred.'
def resolve(id:, **args)
timeline_event = authorized_find!(id: id)
response ::IncidentManagement::TimelineEvents::UpdateService.new(
timeline_event,
current_user,
args
).execute
end
end
end
end
end