Hugo Peixoto
9058ed98f7
Instead of sending all the payment details by email, we're now sending only a link to a page on this platform. This is to help reduce questions of whether the emails are from scammers or real.
35 lines
667 B
Ruby
35 lines
667 B
Ruby
module Config
|
|
def self.organization_full_name
|
|
"ANSOL - Associação Nacional para o Software Livre"
|
|
end
|
|
|
|
def self.organization_website
|
|
"https://ansol.org"
|
|
end
|
|
|
|
def self.regular_payment_value
|
|
30
|
|
end
|
|
|
|
def self.reduced_payment_value
|
|
6
|
|
end
|
|
|
|
def self.ifthenpay_payment_title
|
|
"Quotas ANSOL"
|
|
end
|
|
|
|
def self.payment_iban
|
|
"PT50 0035 2178 00027478430 14"
|
|
end
|
|
|
|
def self.payment_proof_email
|
|
"direccao@ansol.org"
|
|
end
|
|
|
|
def self.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
|
|
end
|