fga-gpp-mds/2017.1-Escola-X

View on GitHub
app/models/secretary.rb

Summary

Maintainability
A
0 mins
Test Coverage
#File name: secretary.rb
#Class name: Secretary
#Description:Validates secretary's attributes outside single table inheritance
class Secretary < Employee

    before_save :set_password

    def self.search(search)
    where("registry LIKE ? OR name LIKE ?", "#{search}", "%#{search}%")
  end

end