File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
resources/views/events/github/delete Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+
3+ return [
4+ 'title ' => '🗑 <b>Webhook Deleted</b> ' ,
5+ 'organization ' => '🏢 Organization: <b>:organization</b> ' ,
6+ 'full_name ' => '📦 Repository: 🦑<b>:full_name</b> ' ,
7+ 'sender ' => '👤 Sender (triggered the event): <b>:sender</b> ' ,
8+ ];
Original file line number Diff line number Diff line change 1+ <?php
2+ /**
3+ * @var $payload object
4+ */
5+
6+ ? >
7+
8+ {!! __ (' tg-notifier::events/github/delete.title' ) ! !}
9+
10+ @if (isset ($payload -> organization ) )
11+ {!! __ (' tg-notifier::events/github/delete.organization' , [' organization' => $payload -> organization -> login ]) ! !}
12+ @endif
13+ @if (isset ($payload -> repository ) )
14+ {!! __ (' tg-notifier::events/github/delete.full_name' , [' full_name' => $payload -> repository -> full_name ]) ! !}
15+ @endif
16+ @if (isset ($payload -> sender ) )
17+ {!! __ (' tg-notifier::events/github/delete.sender' , [' sender' => $payload -> sender -> login ]) ! !}
18+ @endif
You can’t perform that action at this time.
0 commit comments