Sha256: b04c7b92fcb632aee65643179e42a91ced9b65d95569e19e4ea035fdc44fb46e

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

#
# AUTO GENERATED MODEL
# This model was auto generated by the CanvasSync Gem.
# You can customize it as needed, but make sure you test
# any changes you make to the auto generated methods.
#


class Term < ApplicationRecord
  validates :canvas_id, uniqueness: true, presence: true
  has_many :courses, foreign_key: :canvas_term_id, primary_key: :canvas_id

  # This is a sample scope created by the CanvasSync gem; feel
  # free to customize it for your tool's requirements.
  scope :active, -> {
    where(workflow_state: 'active')
      .where("start_at <= ? OR start_at IS NULL", 15.days.from_now)
      .where("end_at >= ? OR end_at IS NULL", 15.days.ago)
  }

  def self.create_or_update(term_params)
    term = Term.find_or_initialize_by(canvas_id: term_params['id'])

    term.assign_attributes(name: term_params['name'],
                           start_at: term_params['start_at'],
                           end_at: term_params['end_at'],
                           workflow_state: term_params['workflow_state'],
                           grading_period_group_id: term_params['grading_period_group_id'],
                           sis_id: term_params['sis_term_id'])

    term.save! if term.changed?
    term
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
canvas_sync-0.10.0 spec/dummy/app/models/term.rb