We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Pretty simple, a notification action which basically does this:
public function apply($subject, NotificationRuleInterface $rule, array $configuration, array $params = []): void { $request = $this->messageFactory ->createRequest('POST', $configuration['url']) ->withHeader('Content-Type', 'application/json') ->withBody($this->streamFactory->createStream(json_encode($this->eventCreator->create($subject, $rule, $params), \JSON_THROW_ON_ERROR))) ; $this->client->sendRequest($request); }
The text was updated successfully, but these errors were encountered:
@dkarlovi did you implement this? could you create a PR?
Sorry, something went wrong.
I've implemented this on my project, would need to clean it up substantially to PR.
@dkarlovi ?
No branches or pull requests
Pretty simple, a notification action which basically does this:
The text was updated successfully, but these errors were encountered: