WebhooksView displays a list of V1 webhooks in a table
| 17 | |
| 18 | // WebhooksView displays a list of V1 webhooks in a table |
| 19 | type WebhooksView struct { |
| 20 | lastFetch time.Time |
| 21 | table *TableWithStyleFunc |
| 22 | debugLogger *DebugLogger |
| 23 | webhooks []rest.V1Webhook |
| 24 | BaseModel |
| 25 | loading bool |
| 26 | showDebug bool |
| 27 | } |
| 28 | |
| 29 | // webhooksMsg contains the fetched webhooks |
| 30 | type webhooksMsg struct { |
nothing calls this directly
no outgoing calls
no test coverage detected