Sha256: be7a9168e3c49d68aa7d5b056900bb21eee6d09cb2b11e5433e4ed59b4a26f78
Contents?: true
Size: 462 Bytes
Versions: 71
Compression:
Stored size: 462 Bytes
Contents
module Sipity # Responsible for defining who receives what email and in what capacity # (eg to:, cc:, bcc:) class NotificationRecipient < ActiveRecord::Base self.table_name = 'sipity_notification_recipients' belongs_to :notification, class_name: 'Sipity::Notification' belongs_to :role, class_name: 'Sipity::Role' enum( recipient_strategy: { 'to' => 'to', 'cc' => 'cc', 'bcc' => 'bcc' } ) end end
Version data entries
71 entries across 71 versions & 3 rubygems