Skip to content

Commit c3327ad

Browse files
authored
Merge pull request #24 from Exanlv/feat/skus
Add endpoint for application SKUs
2 parents 8b580ed + 3b7daf8 commit c3327ad

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Discord/Endpoint.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ class Endpoint
1818
// GET
1919
public const GATEWAY_BOT = self::GATEWAY.'/bot';
2020

21+
// GET
22+
public const APPLICATION_SKUS = 'applications/:application_id/skus';
23+
// GET, POST
24+
public const APPLICATION_ENTITLEMENTS = 'applications/:application_id/entitlements';
25+
// DELETE
26+
public const APPLICATION_ENTITLEMENT = 'applications/:application_id/entitlements/:entitlement_id';
2127
// GET, POST, PUT
2228
public const GLOBAL_APPLICATION_COMMANDS = 'applications/:application_id/commands';
2329
// GET, PATCH, DELETE

0 commit comments

Comments
 (0)