mirror of
https://github.com/elyby/accounts.git
synced 2025-01-16 16:52:59 +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 {
|
public function actionList(): void {
|
||||||
$rows = [];
|
$rows = [];
|
||||||
/** @var WebHook $webHook */
|
/** @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)];
|
$rows[] = [$webHook->id, $webHook->url, $webHook->secret, implode(', ', $webHook->events)];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user