add an email method to expert model

This commit is contained in:
kara Diaby 2021-01-25 13:01:13 +01:00
parent 00ee6faadb
commit 85242e118b

View file

@ -8,4 +8,8 @@
#
class Expert < ApplicationRecord
has_one :user
def email
user.email
end
end