Sha256: 0dfff060f3217ca8147078928840f3aa23605832c57f79febffe5371343e0a0d

Contents?: true

Size: 752 Bytes

Versions: 75

Compression:

Stored size: 752 Bytes

Contents

module CoalescingPanda
  class Assignment < ActiveRecord::Base
    belongs_to :course, foreign_key: :coalescing_panda_course_id, class_name: 'CoalescingPanda::Course'
    belongs_to :assignment_group, foreign_key: :coalescing_panda_assignment_group_id, class_name: 'CoalescingPanda::AssignmentGroup'
    belongs_to :group_category, foreign_key: :coalescing_panda_group_category_id, class_name: 'CoalescingPanda::GroupCategory'
    has_many :submissions, foreign_key: :coalescing_panda_assignment_id, class_name: 'CoalescingPanda::Submission', dependent: :destroy

    delegate :account, to: :course

    validates :coalescing_panda_course_id, presence: true
    validates :canvas_assignment_id, presence: true
    serialize :submission_types
  end
end

Version data entries

75 entries across 75 versions & 1 rubygems

Version Path
coalescing_panda-5.2.2 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.2.2.beta1 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.2.1 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.2.0 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.2.0.beta2 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.2.0.beta1 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.13 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.12 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.11 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.10 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.9 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.8 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.7 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.6 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.5 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.4 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.3.beta.2 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.3.beta.1 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.3 app/models/coalescing_panda/assignment.rb
coalescing_panda-5.1.2 app/models/coalescing_panda/assignment.rb