fga-gpp-mds/2017.1-Escola-X

View on GitHub
app/models/teacher.rb

Summary

Maintainability
A
0 mins
Test Coverage
#File name: teacher.rb
#Class name: Teacher
#Description: Validates teacher's attributes outside single table inheritance
class Teacher < Employee
  has_many :subjects
  before_save :set_password
end