houdini/app/models/billing_plan.rb
Bradley M. Kuhn 6772312ea7 Relicense all .rb files under new project license.
The primary license of the project is changing to:
  AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later

with some specific files to be licensed under the one of two licenses:
   CC0-1.0
   LGPL-3.0-or-later

This commit is one of the many steps to relicense the entire codebase.

Documentation granting permission for this relicensing (from all past
contributors who hold copyrights) is on file with Software Freedom
Conservancy, Inc.
2018-03-25 15:10:40 -04:00

18 lines
655 B
Ruby

# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
class BillingPlan < ActiveRecord::Base
Names = ['Starter', 'Fundraising', 'Supporter Management']
DefaultAmounts = [0, 9900, 29900] # in pennies
attr_accessible \
:name, #str: readable name
:tier, #int: 0-4 (0: Free, 1: Fundraising, 2: Supporter Management)
:amount, #int (cents)
:stripe_plan_id, #str (matches plan ID in Stripe) Not needed if it's not a paying subscription
:interval, #str ('monthly', 'annual')
:percentage_fee # 0.038
has_many :billing_subscriptions
validates :name, :presence => true
validates :amount, :presence => true
end