residency/app/models/member.rb

36 lines
865 B
Ruby
Raw Normal View History

2022-12-20 16:05:26 +01:00
class Member < ApplicationRecord
2023-10-23 10:18:53 +02:00
after_create :skip_conf!
2023-05-24 16:52:52 +02:00
2023-02-03 16:27:42 +01:00
def self.public_scope
where.not(confirmed_at: nil).where.not(picture: nil)
end
2023-06-18 10:23:46 +02:00
def self.visible_scope
where.not(confirmed_at: nil).where.not(arriving: nil)
end
2022-12-20 16:29:05 +01:00
# Include default devise modules. Others available are:
# , :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable, :registerable,:confirmable,
2023-01-24 18:04:53 +01:00
:recoverable, :rememberable, :validatable, :async
2022-12-22 15:45:55 +01:00
2022-12-25 16:37:22 +01:00
mount_uploader :picture, PictureUploader
2023-01-11 19:52:58 +01:00
has_many :stories
2023-01-25 21:15:54 +01:00
has_many :stories
has_many :pictures
2023-10-23 10:18:53 +02:00
def skip_conf!
2023-10-23 10:33:18 +02:00
self.confirm if Rails.env.development?
2023-10-23 10:18:53 +02:00
end
2023-01-22 19:29:10 +01:00
validates :bio, length: { maximum: 1000 }
validates :name , length: { minimum: 3 }
2022-12-31 21:01:51 +01:00
def admin
2023-01-12 21:24:36 +01:00
self.email == "torsten@villataika.fi"
2022-12-31 21:01:51 +01:00
end
2022-12-22 15:45:55 +01:00
def admin?
2023-01-12 21:24:36 +01:00
self.email == "torsten@villataika.fi"
2022-12-22 15:45:55 +01:00
end
2022-12-20 16:05:26 +01:00
end