1234567891011121314 |
- class User < ApplicationRecord
- # Include default devise modules. Others available are:
- # :confirmable, :lockable, :timeoutable and :omniauthable
- devise :masqueradable, :database_authenticatable, :registerable, :recoverable, :rememberable, :trackable, :validatable, :omniauthable
- has_many :notifications, foreign_key: :recipient_id
- has_many :services
- validates :first_name, :last_name, presence: true
- def name
- "#{first_name} #{last_name}"
- end
- end
|