more progress on testing docs and confirmed the changes to the GET /api/projects endpoints don't try to return the full files.

This commit is contained in:
Rapturate
2026-04-28 15:37:35 -04:00
parent 774bb54786
commit c8121cc5e7
2 changed files with 5 additions and 10 deletions

Binary file not shown.

View File

@@ -614,22 +614,17 @@ components:
id: id:
type: integer type: integer
readOnly: true readOnly: true
example: 1 example: 10
name: name:
type: string type: string
example: Project 1 example: alice_dev Project 4
description: description:
type: string type: string
example: Project 1 description example: Workspace for project 4
date_created: date_created:
type: string type: string
format: date-time format: date-time
readOnly: true readOnly: true
files:
type: array
readOnly: true
items:
$ref: '#/components/schemas/File'
ProjectRequest: ProjectRequest:
type: object type: object
@@ -639,10 +634,10 @@ components:
properties: properties:
name: name:
type: string type: string
example: Project 1 example: alice_dev Project 4
description: description:
type: string type: string
example: Project 1 description example: Workspace for project 4
ProjectUpdateRequest: ProjectUpdateRequest:
type: object type: object