7 lines
123 B
Ruby
7 lines
123 B
Ruby
class GridSummon < ApplicationRecord
|
|
belongs_to :party
|
|
|
|
def summon
|
|
Summon.find(self.summon_id)
|
|
end
|
|
end
|