Files
fizzy/app/models/user.rb
T
2025-11-17 16:16:19 +01:00

29 lines
840 B
Ruby

class User < ApplicationRecord
include Accessor, Assignee, Attachable, Configurable, EmailAddressChangeable,
Mentionable, Named, Notifiable, Role, Searcher, Watcher
include Timelined # Depends on Accessor
has_one_attached :avatar
belongs_to :account
belongs_to :identity, optional: true
has_many :comments, inverse_of: :creator, dependent: :destroy
has_many :filters, foreign_key: :creator_id, inverse_of: :creator, dependent: :destroy
has_many :closures, dependent: :nullify
has_many :pins, dependent: :destroy
has_many :pinned_cards, through: :pins, source: :card
scope :with_avatars, -> { preload(:account, :avatar_attachment) }
delegate :staff?, to: :identity, allow_nil: true
def deactivate
transaction do
accesses.destroy_all
update! active: false, identity: nil
end
end
end