hubfeenix.fi/app/models/profile.rb

24 lines
455 B
Ruby

class Profile < ApplicationRecord
belongs_to :member
has_many :events
validates :name , presence: true
validates :kind , presence: true
validates :bio , presence: true
validates :picture , presence: true
mount_uploader :picture, PictureUploader
def self.kinds
["member" , "artist" , "teacher"]
end
def Kind
self.kind.capitalize
end
def future_events
self.events.where( "start_date > ?" , Date.today)
end
end