13 lines
186 B
Ruby
13 lines
186 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GridSummon < ApplicationRecord
|
|
belongs_to :party
|
|
|
|
def summon
|
|
Summon.find(summon_id)
|
|
end
|
|
|
|
def blueprint
|
|
GridSummonBlueprint
|
|
end
|
|
end
|