From 2de04d100423ba30415a13f47b6f4d5ddd70ee77 Mon Sep 17 00:00:00 2001 From: Mo Firouz Date: Wed, 29 May 2019 17:44:00 +0100 Subject: [PATCH] Add missing parameters for adding friend in swagger spec. --- apigrpc/apigrpc.swagger.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/apigrpc/apigrpc.swagger.json b/apigrpc/apigrpc.swagger.json index e1c07c808..87660476d 100644 --- a/apigrpc/apigrpc.swagger.json +++ b/apigrpc/apigrpc.swagger.json @@ -923,6 +923,28 @@ } } }, + "parameters": [ + { + "name": "ids", + "description": "The account id of a user.", + "in": "query", + "required": false, + "type": "array", + "items": { + "type": "string" + } + }, + { + "name": "usernames", + "description": "The account username of a user.", + "in": "query", + "required": false, + "type": "array", + "items": { + "type": "string" + } + } + ], "tags": [ "Nakama" ] -- GitLab