9 lines
139 B
Ruby
9 lines
139 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GridSummon < ApplicationRecord
|
|
belongs_to :party
|
|
|
|
def summon
|
|
Summon.find(summon_id)
|
|
end
|
|
end
|