Fixed linting warnings for paths

This commit is contained in:
Nicholas Wallace 2024-02-20 05:44:23 +00:00
parent a90e79657b
commit 6321c76d32
3 changed files with 7 additions and 5 deletions

View file

@ -155,7 +155,7 @@ class CollectionController {
* schema: * schema:
* $ref: '#/components/schemas/collectionExpanded' * $ref: '#/components/schemas/collectionExpanded'
* 403: * 403:
* A user with update permissions is required to update collections * description: A user with update permissions is required to update collections
* 404: * 404:
* description: No collection with the specified ID exists * description: No collection with the specified ID exists
*/ */
@ -280,12 +280,13 @@ class CollectionController {
* type: string * type: string
* responses: * responses:
* 200: * 200:
* description: OK
* content: * content:
* application/json: * application/json:
* schema: * schema:
* $ref: '#/components/schemas/collectionExpanded' * $ref: '#/components/schemas/collectionExpanded'
* 403: * 403:
* A user with update permissions is required to update collections * description: A user with update permissions is required to update collections
* 404: * 404:
* description: No collection with the specified ID exists * description: No collection with the specified ID exists
* 500: * 500:

View file

@ -30,6 +30,7 @@ class LibraryItemController {
* @openapi * @openapi
* /api/items/{id}: * /api/items/{id}:
* get: * get:
* operationId: getLibraryItem
* summary: Get a library item * summary: Get a library item
* tags: * tags:
* - Items * - Items

View file

@ -2900,11 +2900,11 @@
* example: 2 * example: 2
* homeBookshelfView: * homeBookshelfView:
* description: Whether the home page should use a skeuomorphic design with wooden shelves. * description: Whether the home page should use a skeuomorphic design with wooden shelves.
* type: string * type: integer
* example: 1 * example: 1
* bookshelfView: * bookshelfView:
* description: Whether other bookshelf pages should use a skeuomorphic design with wooden shelves. * description: Whether other bookshelf pages should use a skeuomorphic design with wooden shelves.
* type: string * type: integer
* example: 1 * example: 1
* sortingIgnorePrefix: * sortingIgnorePrefix:
* description: Whether to ignore prefixes when sorting. For example, for the prefix the, the book title The Book Title would sort as Book Title, The. * description: Whether to ignore prefixes when sorting. For example, for the prefix the, the book title The Book Title would sort as Book Title, The.
@ -3236,4 +3236,4 @@
* description: The total number of segments of the stream. * description: The total number of segments of the stream.
* type: integer * type: integer
* example: 6200 * example: 6200
*/ */