Module: C80Estate::Owner::InstanceMethods

Defined in:
app/models/c80_estate/owner.rb

Instance Method Summary collapse

Instance Method Details

#role_type_titleObject



121
122
123
124
125
126
127
128
129
# File 'app/models/c80_estate/owner.rb', line 121

def role_type_title
  res = " - "
  if roles.count > 0
    if roles.first.role_type_id.present?
      res = roles.first.role_type.title
    end
  end
  res
end