Skip to content

Commit 3178f57

Browse files
Albin KerouantonAlbin Kerouanton
Albin Kerouanton
authored and
Albin Kerouanton
committed
Merge pull request KnpLabs#344 from dantleech/fixed_docs
Fixed links to security
2 parents 0453dd6 + 3c435ef commit 3178f57

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

doc/organization/webhooks.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Additional APIs:
99

1010
### List webhooks for an organization
1111

12-
> Requires [authentication](security.md).
12+
> Requires [authentication](../security.md).
1313
1414
```php
1515
$webhooks = $client->organization()->all('KnpLabs');
@@ -19,7 +19,7 @@ Returns an array of webhooks for the organization.
1919

2020
### Get a webhook for an organization
2121

22-
> Requires [authentication](security.md).
22+
> Requires [authentication](../security.md).
2323
2424
```php
2525
$webhook = $client->organization()->show('KnpLabs', 123);
@@ -29,7 +29,7 @@ Returns the webhook with the ID 123 as an array for the organization.
2929

3030
### Create a new webhook for an organization
3131

32-
> Requires [authentication](security.md).
32+
> Requires [authentication](../security.md).
3333
3434
```php
3535
$webhook = $client->organization()->create('KnpLabs', array(
@@ -53,7 +53,7 @@ The create webhook will be returned as an array.
5353

5454
### Update an existing webhook for an organization
5555

56-
> Requires [authentication](security.md).
56+
> Requires [authentication](../security.md).
5757
5858
```php
5959
$success = $client->organization()->update('KnpLabs', 123, array(
@@ -76,7 +76,7 @@ In case of success, an array of informations about the webhook will be returned.
7676

7777
### Ping a webhook for an organization
7878

79-
> Requires [authentication](security.md).
79+
> Requires [authentication](../security.md).
8080
8181
```php
8282
$client->organization()->pings('KnpLabs', 123);
@@ -86,10 +86,10 @@ No content is returned.
8686

8787
### Delete a webhook for an organization
8888

89-
> Requires [authentication](security.md).
89+
> Requires [authentication](../security.md).
9090
9191
```php
9292
$client->organization()->delete('KnpLabs', 123);
9393
```
9494

95-
No content is returned.
95+
No content is returned.

0 commit comments

Comments
 (0)