61 lines
1.1 KiB
Ruby
61 lines
1.1 KiB
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_iban
|
|
"PT50 0033 0000 45508899562 05"
|
|
end
|
|
|
|
def payment_proof_email
|
|
"direccao@direitosdigitais.pt"
|
|
end
|
|
|
|
def reduced_payment_description
|
|
"Caso queiras usufruir da quota reduzida de 6.00€ para estudantes, pessoas
|
|
desempregadas ou reformadas, envia-nos um comprovativo desse estatuto."
|
|
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
|