7 lines
135 B
Ruby
7 lines
135 B
Ruby
class GridCharacter < ApplicationRecord
|
|
belongs_to :party
|
|
|
|
def character
|
|
Character.find(self.character_id)
|
|
end
|
|
end
|