diff --git a/website/server/controllers/api-v4/auth.js b/website/server/controllers/api-v4/auth.js index 7ff213183c..76d07d7c6c 100644 --- a/website/server/controllers/api-v4/auth.js +++ b/website/server/controllers/api-v4/auth.js @@ -55,6 +55,7 @@ api.verifyUsername = { /* NOTE this route has also an API v3 version */ /** + * @apiIgnore * @api {post} /api/v4/user/auth/local/register Register * @apiDescription Register a new user with email, login name, and password * or attach local auth to a social user diff --git a/website/server/controllers/api-v4/coupon.js b/website/server/controllers/api-v4/coupon.js index 819c0f407c..efa0d20a0f 100644 --- a/website/server/controllers/api-v4/coupon.js +++ b/website/server/controllers/api-v4/coupon.js @@ -12,6 +12,7 @@ const api = {}; /* NOTE this route has also an API v3 version */ /** + * @apiIgnore * @api {post} /api/v4/coupons/enter/:code Redeem a coupon code * @apiName RedeemCouponCode * @apiGroup Coupon diff --git a/website/server/controllers/api-v4/faq.js b/website/server/controllers/api-v4/faq.js index 4dfce05f24..6e791c8395 100644 --- a/website/server/controllers/api-v4/faq.js +++ b/website/server/controllers/api-v4/faq.js @@ -33,6 +33,7 @@ function _deleteOtherPlatformsAnswers (faqObject, platform) { } /** + * @apiIgnore * @api {get} /api/v4/faq Get faq in json format * @apiDescription Does not require authentication. * @apiName FaqGet diff --git a/website/server/controllers/api-v4/inbox.js b/website/server/controllers/api-v4/inbox.js index 6f41cdb474..c0b88f13a4 100644 --- a/website/server/controllers/api-v4/inbox.js +++ b/website/server/controllers/api-v4/inbox.js @@ -15,6 +15,7 @@ const api = {}; /* NOTE this route has also an API v3 version */ /** + * @apiIgnore * @api {delete} /api/v4/inbox/messages/:messageId Delete a message * @apiName deleteMessage * @apiGroup User @@ -51,6 +52,7 @@ api.deleteMessage = { /* NOTE this route has also an API v3 version */ /** + * @apiIgnore * @api {delete} /api/v4/inbox/clear Delete all messages * @apiName clearMessages * @apiGroup User @@ -74,6 +76,7 @@ api.clearMessages = { }; /** + * @apiIgnore * @api {get} /api/v4/inbox/conversations Get the conversations for a user * @apiName conversations * @apiGroup Inbox @@ -116,6 +119,7 @@ api.conversations = { }; /** + * @apiIgnore * @api {get} /api/v4/inbox/paged-messages Get inbox messages for a user * @apiName GetInboxMessages * @apiGroup Inbox diff --git a/website/server/controllers/api-v4/members.js b/website/server/controllers/api-v4/members.js index b84a3775fe..7da02dfc8d 100644 --- a/website/server/controllers/api-v4/members.js +++ b/website/server/controllers/api-v4/members.js @@ -4,6 +4,7 @@ import { chatReporterFactory } from '../../libs/chatReporting/chatReporterFactor const api = {}; /** + * @apiIgnore * @api {post} /api/v4/members/flag-private-message/:messageId Flag a private message * @apiDescription Moderators are notified about every flagged message, * including the sender, recipient, and full content of the message. diff --git a/website/server/controllers/api-v4/user.js b/website/server/controllers/api-v4/user.js index f7acd2d514..6a75da5c7b 100644 --- a/website/server/controllers/api-v4/user.js +++ b/website/server/controllers/api-v4/user.js @@ -13,6 +13,7 @@ const api = {}; /* NOTE this route has also an API v3 version */ /** + * @apiIgnore * @api {get} /api/v4/user Get the authenticated user's profile * @apiName UserGet * @apiGroup User @@ -70,6 +71,7 @@ api.getUser = { /* NOTE this route has also an API v3 version */ /** + * @apiIgnore * @api {put} /api/v4/user Update the user * @apiName UserUpdate * @apiGroup User @@ -110,6 +112,7 @@ api.updateUser = { /* NOTE this route has also an API v3 version */ /** + * @apiIgnore * @api {post} /api/v4/user/rebirth Use Orb of Rebirth on user * @apiName UserRebirth * @apiGroup User @@ -149,6 +152,7 @@ api.userRebirth = { /* NOTE this route has also an API v3 version */ /** + * @apiIgnore * @api {post} /api/v4/user/reroll Reroll a user using the Fortify Potion * @apiName UserReroll * @apiGroup User @@ -182,6 +186,7 @@ api.userReroll = { /* NOTE this route has also an API v3 version */ /** + * @apiIgnore * @api {post} /api/v4/user/reset Reset user * @apiName UserReset * @apiGroup User diff --git a/website/server/controllers/api-v4/user/spells.js b/website/server/controllers/api-v4/user/spells.js index 570e2ada81..90a105d449 100644 --- a/website/server/controllers/api-v4/user/spells.js +++ b/website/server/controllers/api-v4/user/spells.js @@ -14,6 +14,7 @@ const api = {}; /* NOTE this route has also an API v3 version */ /** + * @apiIgnore * @api {post} /api/v4/user/class/cast/:spellId Cast a skill (spell) on a target * @apiName UserCast * @apiGroup User