Genshin/GAKUEngine

View on GitHub
core/app/models/gaku/lesson_plan.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Gaku
  class LessonPlan < ActiveRecord::Base
    include Notes

    has_many :lessons
    has_many :attachments, as: :attachable
    belongs_to :syllabus, required: false

    validates :syllabus, presence: true
  end
end