1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-02 20:15:22 +02:00

Show onboarding unless invitation present

Fixes #1421
This commit is contained in:
Zach Gollwitzer 2024-11-05 19:08:45 -05:00
parent f2739b79fb
commit 455257bf51
3 changed files with 5 additions and 4 deletions

View file

@ -12,7 +12,6 @@ class Invitation < ApplicationRecord
scope :pending, -> { where(accepted_at: nil).where("expires_at > ?", Time.current) }
scope :accepted, -> { where.not(accepted_at: nil) }
scope :most_recent_for_email, ->(email) { where(email: email).order(accepted_at: :desc).first }
def pending?
accepted_at.nil? && expires_at > Time.current