Skip to content

Commit

Permalink
Fixed #13, Fixed #7
Browse files Browse the repository at this point in the history
  • Loading branch information
andris-sevcenko committed Feb 28, 2019
1 parent 1432f36 commit a32ba5b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
- Mollie for Craft Commerce now requires Craft 3.1.5 or later.
- Mollie for Craft Commerce now uses Omnipay v3.

### Fixed
- Fixed a bug where HTTP 400 would sometimes be triggered. ([#7](https://github.com/craftcms/commerce-mollie/issues/7))

## 1.1.1 - 2019-02-13

### Added
Expand Down
8 changes: 8 additions & 0 deletions src/gateways/Gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ public static function displayName(): string
return Craft::t('commerce', 'Mollie');
}

/**
* @inheritdoc
*/
public function supportsWebhooks(): bool
{
return true;
}

/**
* @inheritdoc
*/
Expand Down

0 comments on commit a32ba5b

Please sign in to comment.