Class: LMS::GraphQL::Mutations::Canvas::DeleteExternalFeedGroup

Inherits:
CanvasBaseMutation
  • Object
show all
Defined in:
lib/lms/graphql/mutations/canvas/delete_external_feed_groups.rb

Instance Method Summary collapse

Instance Method Details

#resolve(group_id:, external_feed_id:) ⇒ Object



11
12
13
14
15
16
17
18
19
# File 'lib/lms/graphql/mutations/canvas/delete_external_feed_groups.rb', line 11

def resolve(group_id:, external_feed_id:)
  ctx[:canvas_api].proxy(
    "DELETE_EXTERNAL_FEED_GROUPS",
    {
      "group_id": group_id,
      "external_feed_id": external_feed_id              },
    nil,
  ).parsed_response
end