Sha256: 860b8b58cf300e8775a7547fd94dccd9c293ac40cfc24a731ae527f97671c3a5

Contents?: true

Size: 697 Bytes

Versions: 42

Compression:

Stored size: 697 Bytes

Contents

# frozen_string_literal: true

module Thredded
  class NotificationsForPrivateTopics < ActiveRecord::Base
    belongs_to :user,
               class_name: Thredded.user_class_name,
               inverse_of: :thredded_notifications_for_private_topics
    belongs_to :user_preference,
               primary_key: :user_id,
               foreign_key: :user_id,
               inverse_of: :notifications_for_private_topics

    validates :user_id, presence: true

    include Thredded::NotifierPreference

    def self.default(_notifier)
      # could be moved to  `notifier.defaults(:notifications_for_private_topics)`
      Thredded::BaseNotifier::NotificationsDefault.new(true)
    end
  end
end

Version data entries

42 entries across 42 versions & 2 rubygems

Version Path
thredded-1.1.0 app/models/thredded/notifications_for_private_topics.rb
thredded-1.0.1 app/models/thredded/notifications_for_private_topics.rb
thredded-1.0.0 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.16 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.15 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.14 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.13 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.12 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.11 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.10 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.9 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.8 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.7 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.6 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.5 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.4 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.3 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.1 app/models/thredded/notifications_for_private_topics.rb
thredded-0.16.0 app/models/thredded/notifications_for_private_topics.rb
thredded-0.15.5 app/models/thredded/notifications_for_private_topics.rb