polyglot/app/models/user.rb

16 lines
389 B
Ruby

class User < ApplicationRecord
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :validatable
has_many :connections
def contacts
self.connections.map do |connection|
connection.contact
end
end
end