( subscription *TaskBridgeNotificationSubscriptionRecord, )
| 3299 | } |
| 3300 | |
| 3301 | func taskBridgeNotificationSubscriptionBundle( |
| 3302 | subscription *TaskBridgeNotificationSubscriptionRecord, |
| 3303 | ) outputBundle { |
| 3304 | return outputBundle{ |
| 3305 | jsonValue: *subscription, |
| 3306 | human: func() (string, error) { |
| 3307 | return renderHumanSection( |
| 3308 | "Task Bridge Notification Subscription", |
| 3309 | taskBridgeNotificationRows(subscription), |
| 3310 | ), nil |
| 3311 | }, |
| 3312 | toon: func() (string, error) { |
| 3313 | return renderJSONPreview(subscription) |
| 3314 | }, |
| 3315 | } |
| 3316 | } |
| 3317 | |
| 3318 | func taskBridgeNotificationSubscriptionListBundle( |
| 3319 | items []TaskBridgeNotificationSubscriptionRecord, |
no test coverage detected