class LMSGraphQL::Mutations::Canvas::RefreshJwt

Public Instance Methods

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