mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
10 lines
140 B
Ruby
10 lines
140 B
Ruby
class Invitation < ApplicationRecord
|
|
include TenantOwnable
|
|
|
|
belongs_to :tenant
|
|
|
|
def expired?
|
|
updated_at <= 3.months.ago
|
|
end
|
|
end
|