class LMSGraphQL::Mutations::Canvas::RemoveFeatureFlagAccount
Public Instance Methods
resolve(account_id:, feature:)
click to toggle source
# File lib/lms_graphql/mutations/canvas/remove_feature_flag_accounts.rb, line 13 def resolve(account_id:, feature:) context[:canvas_api].call("REMOVE_FEATURE_FLAG_ACCOUNTS").proxy( "REMOVE_FEATURE_FLAG_ACCOUNTS", { "account_id": account_id, "feature": feature }, {}, ).parsed_response end