Sha256: 0e89b666389d38ae04a2428586ae9f7758ff6efe75e7ab7538eecaa9b4a759fe
Contents?: true
Size: 1.3 KB
Versions: 13
Compression:
Stored size: 1.3 KB
Contents
module CoalescingPanda class Course < ActiveRecord::Base belongs_to :account, foreign_key: :coalescing_panda_lti_account_id, class_name: 'CoalescingPanda::LtiAccount' belongs_to :term, foreign_key: :coalescing_panda_term_id, class_name: 'CoalescingPanda::Term' has_many :sections, foreign_key: :coalescing_panda_course_id, class_name: 'CoalescingPanda::Section', dependent: :destroy has_many :enrollments, through: :sections, dependent: :destroy has_many :assignments, foreign_key: :coalescing_panda_course_id, class_name: 'CoalescingPanda::Assignment', dependent: :destroy has_many :submissions, through: :assignments, dependent: :destroy has_many :users, through: :sections, source: :users, class_name: 'CoalescingPanda::User' has_many :groups, :as => :context, class_name: 'CoalescingPanda::Group', dependent: :destroy has_many :group_memberships, through: :groups, source: :group_memberships, class_name: 'CoalescingPanda::GroupMembership', dependent: :destroy has_many :canvas_batches, as: :context, dependent: :destroy has_many :assignment_groups, foreign_key: :coalescing_panda_course_id, class_name: 'CoalescingPanda::AssignmentGroup', dependent: :destroy validates :coalescing_panda_lti_account_id, presence: true validates :canvas_course_id, presence: true end end
Version data entries
13 entries across 13 versions & 1 rubygems