class LMSGraphQL::Mutations::Canvas::UpdateSharedTheme

Public Instance Methods

resolve(account_id:, id:) click to toggle source
# File lib/lms_graphql/mutations/canvas/update_shared_theme.rb, line 13
def resolve(account_id:, id:)
  context[:canvas_api].call("UPDATE_SHARED_THEME").proxy(
    "UPDATE_SHARED_THEME",
    {
      "account_id": account_id,
      "id": id
    },
    {},
  ).parsed_response
end