Sha256: 78d26b6f1cb73122d725e17672baa0dc392c6aa83e31c006f448e8531d743b81
Contents?: true
Size: 1.04 KB
Versions: 6
Compression:
Stored size: 1.04 KB
Contents
# # # # AUTO GENERATED MIGRATION # This migration was auto generated by the CanvasSync Gem. # You can add new columns to this table, but removing or # re-naming ones created here may break Canvas Syncing. # # A ContextModule is the same as a Canvas Module. They're called ContextModules for 2 reasons: # 1 - Module is a reserved word in Rails and you can't call a model a Module # 2 - Canvas calls them ContextModules class ContextModule < ApplicationRecord include CanvasSync::Record include CanvasSync::Concerns::ApiSyncable canvas_sync_features :defaults belongs_to :context, polymorphic: true, optional: true, primary_key: :canvas_id, foreign_key: :canvas_context_id, foreign_type: :canvas_context_type has_many :context_module_items, primary_key: :canvas_id, foreign_key: :canvas_context_module_id has_many :assignments, through: :context_module_items api_syncable({ # TODO If your tool Syncs ContextModules, please complete this and merge it into CanvasSync }, -> (api) { api.course_module(canvas_context_id, canvas_id) }) end
Version data entries
6 entries across 6 versions & 1 rubygems