Genshin/GAKUEngine

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

Summary

Maintainability
A
0 mins
Test Coverage
module Gaku
  class Lesson < ActiveRecord::Base
    belongs_to :lesson_plan
    has_many :attendances, as: :attendancable

    validates :lesson_plan, presence: true
  end
end