Sha256: 00cda70fb89512f27cd776d6c7119e731eeddd06f8554609dc09603e8e7b24ec
Contents?: true
Size: 825 Bytes
Versions: 7
Compression:
Stored size: 825 Bytes
Contents
# # <%= autogenerated_migration_warning %> # 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::ApiSyncable 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
7 entries across 7 versions & 1 rubygems