summaryrefslogtreecommitdiff
path: root/src/server
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-02-25 03:35:45 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-02-25 03:35:45 +0900
commit495aad6a2d5a9f3e95c1a1aa96dbd391d19b3511 (patch)
tree12d941cc2a5487e6f861ab67080d168f6b2d8fbd /src/server
parentImprove doc (diff)
downloadsharkey-495aad6a2d5a9f3e95c1a1aa96dbd391d19b3511.tar.gz
sharkey-495aad6a2d5a9f3e95c1a1aa96dbd391d19b3511.tar.bz2
sharkey-495aad6a2d5a9f3e95c1a1aa96dbd391d19b3511.zip
Improve doc
Diffstat (limited to 'src/server')
-rw-r--r--src/server/api/endpoints/users/lists/list.ts9
-rw-r--r--src/server/api/endpoints/users/lists/show.ts4
-rw-r--r--src/server/api/openapi/schemas.ts22
3 files changed, 34 insertions, 1 deletions
diff --git a/src/server/api/endpoints/users/lists/list.ts b/src/server/api/endpoints/users/lists/list.ts
index 632f4e7e5b..ece2af5603 100644
--- a/src/server/api/endpoints/users/lists/list.ts
+++ b/src/server/api/endpoints/users/lists/list.ts
@@ -10,7 +10,14 @@ export const meta = {
requireCredential: true,
- kind: 'account-read'
+ kind: 'account-read',
+
+ res: {
+ type: 'array',
+ items: {
+ type: 'UserList',
+ },
+ },
};
export default define(meta, async (ps, me) => {
diff --git a/src/server/api/endpoints/users/lists/show.ts b/src/server/api/endpoints/users/lists/show.ts
index 2f3c8889ad..0fab2fa499 100644
--- a/src/server/api/endpoints/users/lists/show.ts
+++ b/src/server/api/endpoints/users/lists/show.ts
@@ -23,6 +23,10 @@ export const meta = {
},
},
+ res: {
+ type: 'UserList'
+ },
+
errors: {
noSuchList: {
message: 'No such list.',
diff --git a/src/server/api/openapi/schemas.ts b/src/server/api/openapi/schemas.ts
index 4f63c7aefd..cca789bf7a 100644
--- a/src/server/api/openapi/schemas.ts
+++ b/src/server/api/openapi/schemas.ts
@@ -97,6 +97,28 @@ export const schemas = {
required: ['id', 'name', 'username', 'createdAt']
},
+ UserList: {
+ type: 'object',
+ properties: {
+ id: {
+ type: 'string',
+ format: 'id',
+ description: 'The unique identifier for this UserList.',
+ example: 'xxxxxxxxxxxxxxxxxxxxxxxx',
+ },
+ createdAt: {
+ type: 'string',
+ format: 'date-time',
+ description: 'The date that the UserList was created.'
+ },
+ title: {
+ type: 'string',
+ description: 'The name of the UserList.'
+ },
+ },
+ required: ['id', 'createdAt', 'title']
+ },
+
Note: {
type: 'object',
properties: {