Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Bitcoin #66

Merged
merged 3 commits into from
May 1, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove Bitcoin
  • Loading branch information
vernondegoede committed Apr 25, 2019
commit 2f807dd95bf3e519eec7715bf89963e99c460f56
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ Contact: [www.mollie.com](https://www.mollie.com) — info@mollie.com — +31 20
+ [More information about SOFORT Banking via Mollie](https://www.mollie.com/en/payments/sofort/)
+ [More information about SEPA Bank transfer via Mollie](https://www.mollie.com/en/payments/bank-transfer/)
+ [More information about SEPA Direct debit via Mollie](https://www.mollie.com/en/payments/direct-debit/)
+ [More information about Bitcoin via Mollie](https://www.mollie.com/en/payments/bitcoin/)
+ [More information about PayPal via Mollie](https://www.mollie.com/en/payments/paypal/)
+ [More information about KBC/CBC Payment Button via Mollie](https://www.mollie.com/en/payments/kbc-cbc/)
+ [More information about Belfius Direct Net via Mollie](https://www.mollie.com/en/payments/belfius)
Expand Down
4 changes: 1 addition & 3 deletions app/models/spree/mollie_payment_source.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ def name
'SOFORT Banking'
when ::Mollie::Method::BANKTRANSFER then
'Bank transfer'
when ::Mollie::Method::BITCOIN then
'Bitcoin'
when ::Mollie::Method::PAYPAL then
'PayPal'
when ::Mollie::Method::KBC then
Expand All @@ -52,7 +50,7 @@ def name
when ::Mollie::Method::KLARNAPAYLATER then
'Klarna Pay Later'
else
'Mollie'
'Mollie (Unknown method)'
end
end

Expand Down
15 changes: 0 additions & 15 deletions docs/api/methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,21 +285,6 @@ Content-Type: application/json; charset=utf-8
}
}
},
{
"resource": "method",
"id": "bitcoin",
"description": "Bitcoin",
"image": {
"size1x": "https://www.mollie.com/images/payscreen/methods/bitcoin.png",
"size2x": "https://www.mollie.com/images/payscreen/methods/bitcoin%402x.png"
},
"_links": {
"self": {
"href": "https://api.mollie.com/v2/methods/bitcoin",
"type": "application/hal+json"
}
}
}
]

```