RegisterWebhookRoutes registers routes for the /webhooks prefix
()
| 1681 | |
| 1682 | // RegisterWebhookRoutes registers routes for the /webhooks prefix |
| 1683 | func (container *Container) RegisterWebhookRoutes() { |
| 1684 | container.logger.Debug(fmt.Sprintf("registering %T routes", &handlers.WebhookHandler{})) |
| 1685 | container.WebhookHandler().RegisterRoutes(container.App(), container.AuthenticatedMiddleware()) |
| 1686 | } |
| 1687 | |
| 1688 | // RegisterPhoneRoutes registers routes for the /phone prefix |
| 1689 | func (container *Container) RegisterPhoneRoutes() { |
no test coverage detected