8 lines
248 B
Ruby
8 lines
248 B
Ruby
|
|
module JamRuby
|
||
|
|
class Subject < ActiveRecord::Base
|
||
|
|
include HtmlSanitize
|
||
|
|
html_sanitize strict: [:name, :description]
|
||
|
|
has_and_belongs_to_many :teachers, :class_name => "JamRuby::Teacher", :join_table => "teachers_subjects"
|
||
|
|
end
|
||
|
|
end
|