| Brad Ison | 366a7a0 | 2016-03-27 17:06:21 -0400 | [diff] [blame] | 1 | package webhooks |
| 2 | |||||
| 3 | import "github.com/rackspace/gophercloud" | ||||
| 4 | |||||
| 5 | func listURL(c *gophercloud.ServiceClient, groupID, policyID string) string { | ||||
| 6 | return c.ServiceURL("groups", groupID, "policies", policyID, "webhooks") | ||||
| 7 | } | ||||
| Brad Ison | e6e0ec1 | 2016-03-27 21:26:46 -0400 | [diff] [blame^] | 8 | |
| 9 | func createURL(c *gophercloud.ServiceClient, groupID, policyID string) string { | ||||
| 10 | return c.ServiceURL("groups", groupID, "policies", policyID, "webhooks") | ||||
| 11 | } | ||||