mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
Fixes ACCOUNTS-4
This commit is contained in:
parent
5fbc167708
commit
89526c39bb
@ -17,7 +17,7 @@ class WebhooksController extends Controller {
|
||||
public function actionList(): void {
|
||||
$rows = [];
|
||||
/** @var WebHook $webHook */
|
||||
foreach (WebHook::find()->with('events')->all() as $webHook) {
|
||||
foreach (WebHook::find()->all() as $webHook) {
|
||||
$rows[] = [$webHook->id, $webHook->url, $webHook->secret, implode(', ', $webHook->events)];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user