13
14
15
16
17
18
19
20
21
22
23
24
|
# File 'lib/lms_graphql/mutations/canvas/begin_migration_to_push_to_associated_courses.rb', line 13
def resolve(course_id:, template_id:, comment: nil, send_notification: nil, copy_settings: nil)
context[:canvas_api].call("BEGIN_MIGRATION_TO_PUSH_TO_ASSOCIATED_COURSES").proxy(
"BEGIN_MIGRATION_TO_PUSH_TO_ASSOCIATED_COURSES",
{
"course_id": course_id,
"template_id": template_id,
"comment": ,
"send_notification": send_notification,
"copy_settings": copy_settings },
nil,
).parsed_response
end
|