Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix fields not marked as optional im apidoc #15351

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/server/controllers/api-v3/members.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,12 +377,12 @@ function _getMembersForItem (type) {
* @apiGroup Member
*
* @apiParam (Path) {UUID} groupId The group id ('party' for the user party is accepted)
* @apiParam (Query) {UUID} lastId Query parameter to specify the last member
* @apiParam (Query) {UUID} [lastId] Query parameter to specify the last member
* returned in a previous request to this route and
* get the next batch of results.
* @apiParam (Query) {Number} limit=30 BETA Query parameter
* to specify the number of results to return. Max is 60.
* @apiParam (Query) {Boolean} includeAllPublicFields If set to `true`
* @apiParam (Query) {Boolean} [includeAllPublicFields] If set to `true`
* then all public fields for members
* will be returned (similar to when making
* a request for a single member).
Expand Down
2 changes: 1 addition & 1 deletion website/server/controllers/api-v3/user/spells.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const api = {};
* valorousPresence, intimidate, pickPocket, backStab, toolsOfTrade,
* stealth, heal, protectAura, brightness, healAll,
* snowball, spookySparkles, seafoam, shinySeed} spellId The skill to cast.
* @apiParam (Query) {UUID} targetId Query parameter, necessary if the spell is
* @apiParam (Query) {UUID} [targetId] Query parameter, necessary if the spell is
* cast on a party member or task. Not used if the spell
* is casted on the user or the user's current party.
* @apiParamExample {json} Query example:
Expand Down
Loading