13 lines
201 B
Ruby
13 lines
201 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GridCharacter < ApplicationRecord
|
|
belongs_to :party
|
|
|
|
def character
|
|
Character.find(character_id)
|
|
end
|
|
|
|
def blueprint
|
|
GridCharacterBlueprint
|
|
end
|
|
end
|