Skip to content

Commit 664360e

Browse files
committed
minor updates
1 parent a220747 commit 664360e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

server/src/api_endpoints/tenants/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const getTenants = async (req, res, next) => {
2222
return acc
2323
}, {})
2424
const tenants = await dbAdminTenant.getTenants(filters, sort, order)
25-
res.status(200).send(tenants);
25+
res.status(200).send(tenants)
2626
} catch ({ httpStatusCode = 500, message }) {
2727
return next(createError(httpStatusCode, { message }))
2828
}

server/the-usher-openapi-spec.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1265,6 +1265,7 @@ paths:
12651265
description: Specify the sort order (asc or desc). Default is descending.
12661266
schema:
12671267
type: string
1268+
example: desc
12681269
enum: [asc, desc]
12691270
tags:
12701271
- Admin APIs

0 commit comments

Comments
 (0)