indentlabs/notebook

View on GitHub
app/models/page_groupers/character_love_interest.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CharacterLoveInterest < ApplicationRecord
  include HasContentLinking

  belongs_to :user, optional: true
  belongs_to :character
  belongs_to :love_interest, class_name: 'Character', optional: true
end