2019-07-30 21:29:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-27 23:09:06 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2019-02-01 19:40:24 +00:00
|
|
|
class EmailList < ApplicationRecord
|
2019-07-23 19:22:00 +00:00
|
|
|
# attr_accessible :list_name, :mailchimp_list_id, :nonprofit, :tag_master
|
2018-10-24 16:36:02 +00:00
|
|
|
belongs_to :nonprofit
|
|
|
|
belongs_to :tag_master
|
|
|
|
end
|