File: interest.rb

package info (click to toggle)
rails 2%3A7.2.2.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,348 kB
  • sloc: ruby: 349,797; javascript: 30,703; yacc: 46; sql: 43; sh: 29; makefile: 27
file content (16 lines) | stat: -rw-r--r-- 584 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class Interest < ActiveRecord::Base
  belongs_to :human, inverse_of: :interests
  belongs_to :human_with_callbacks,
    class_name: "Human",
    foreign_key: :human_id,
    inverse_of: :interests_with_callbacks
  belongs_to :polymorphic_human, polymorphic: true, inverse_of: :polymorphic_interests
  belongs_to :polymorphic_human_with_callbacks,
    foreign_key: :polymorphic_human_id,
    foreign_type: :polymorphic_human_type,
    polymorphic: true,
    inverse_of: :polymorphic_interests_with_callbacks
  belongs_to :zine, inverse_of: :interests
end