class LMSGraphQL::Mutations::Canvas::UpdateAccountAuthSetting

Public Instance Methods

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