class LMSGraphQL::Resolvers::Canvas::GetBrandConfigVariablesThatShouldBeUsedForThisDomain
Public Instance Methods
resolve(get_all: false)
click to toggle source
# File lib/lms_graphql/resolvers/canvas/get_brand_config_variables_that_should_be_used_for_this_domain.rb, line 9 def resolve(get_all: false) result = context[:canvas_api].call("GET_BRAND_CONFIG_VARIABLES_THAT_SHOULD_BE_USED_FOR_THIS_DOMAIN").proxy( "GET_BRAND_CONFIG_VARIABLES_THAT_SHOULD_BE_USED_FOR_THIS_DOMAIN", { }, nil, get_all, ) get_all ? result : result.parsed_response end