saucy/app/lib/config/d3.rb
2024-06-25 11:53:43 +01:00

56 lines
907 B
Ruby

module Config
module D3
def organization_short_name
"D3"
end
def organization_full_name
"Associação D3 - Defesa dos Direitos Digitais"
end
def organization_website
"https://direitosdigitais.pt"
end
def regular_payment_value
32
end
def reduced_payment_value
16
end
def full_rights_vesting_period
1.year
end
def payment_pending_grace_period
120.days
end
def ifthenpay_payment_title
"Quotas D3"
end
def payment_proof_email
"direccao@direitosdigitais.pt"
end
def reduced_payment_description
""
end
def header_color
"#60f163"
end
def header_background_color
"#424242"
end
def organization_logo_url
"https://direitosdigitais.pt/templates/g5_hydrogen/custom/images/d3/d3-logo/logo-d3-transparente.png"
end
end
end