All checks were successful
		
		
	
	Run unit tests / copyright_notice (pull_request) Successful in 33s
				
			Run unit tests / rubocop (pull_request) Successful in 2m14s
				
			Run unit tests / check-licenses (pull_request) Successful in 2m25s
				
			Run unit tests / unit_tests (pull_request) Successful in 3m42s
				
			Run unit tests / build-static-assets (pull_request) Successful in 40m28s
				
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			713 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			713 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# Copyright (C) 2024-2025 LibreWeddingPlanner contributors
 | 
						|
 | 
						|
# frozen_string_literal: true
 | 
						|
 | 
						|
# == Schema Information
 | 
						|
#
 | 
						|
# Table name: invitations
 | 
						|
#
 | 
						|
#  id         :uuid             not null, primary key
 | 
						|
#  created_at :datetime         not null
 | 
						|
#  updated_at :datetime         not null
 | 
						|
#  wedding_id :uuid             not null
 | 
						|
#
 | 
						|
# Indexes
 | 
						|
#
 | 
						|
#  index_invitations_on_wedding_id  (wedding_id)
 | 
						|
#
 | 
						|
# Foreign Keys
 | 
						|
#
 | 
						|
#  fk_rails_...  (wedding_id => weddings.id) ON DELETE => cascade
 | 
						|
#
 | 
						|
class Invitation < ApplicationRecord
 | 
						|
  acts_as_tenant :wedding
 | 
						|
  has_many :guests, dependent: :nullify
 | 
						|
 | 
						|
  def url
 | 
						|
    "#{Rails.application.routes.url_helpers.root_url(slug: ActsAsTenant.current_tenant.slug)}/site/invitation/#{id}"
 | 
						|
  end
 | 
						|
end
 |