Skip to content

Commit

Permalink
Issue #96 change billing currency from EUR to credits
Browse files Browse the repository at this point in the history
  • Loading branch information
soxofaan committed Mar 15, 2023
1 parent 14c06e3 commit cefa8d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ The format is roughly based on [Keep a Changelog](https://keepachangelog.com/en/

### Changed

- Change billing currency from EUR to credits ([#96](https://github.com/Open-EO/openeo-aggregator/issues/96))

### Fixed

- Merging of collection metadata produced duplicate entries in `links`: [openEOPlatform/architecture-docs#266](https://github.com/openEOPlatform/architecture-docs/issues/266)
Expand Down
3 changes: 2 additions & 1 deletion src/openeo_aggregator/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -1112,8 +1112,9 @@ def health_check(self, options: Optional[dict] = None) -> Union[str, dict, flask

def capabilities_billing(self) -> dict:
# TODO: ok to hardcode this here, or move to config?
# TODO #96 check that all upstream back-ends use the same currency (credits)
return {
"currency": "EUR",
"currency": "credits",
"plans": [
{
"name": p.name,
Expand Down

0 comments on commit cefa8d0

Please sign in to comment.