-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: jld3103 <[email protected]>
- Loading branch information
1 parent
a756600
commit 3ca604c
Showing
3 changed files
with
148 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
{ | ||
"openapi": "3.0.3", | ||
"info": { | ||
"title": "files_trashbin", | ||
"version": "0.0.1", | ||
"description": "This application enables users to restore files that were deleted from the system.", | ||
"license": { | ||
"name": "agpl" | ||
} | ||
}, | ||
"components": { | ||
"securitySchemes": { | ||
"basic_auth": { | ||
"type": "http", | ||
"scheme": "basic" | ||
}, | ||
"bearer_auth": { | ||
"type": "http", | ||
"scheme": "bearer" | ||
} | ||
}, | ||
"schemas": { | ||
"Capabilities": { | ||
"type": "object", | ||
"required": [ | ||
"files" | ||
], | ||
"properties": { | ||
"files": { | ||
"type": "object", | ||
"required": [ | ||
"undelete" | ||
], | ||
"properties": { | ||
"undelete": { | ||
"type": "boolean" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"paths": { | ||
"/index.php/apps/files_trashbin/preview": { | ||
"get": { | ||
"operationId": "preview-get-preview", | ||
"summary": "Get the preview for a file", | ||
"tags": [ | ||
"preview" | ||
], | ||
"security": [ | ||
{ | ||
"bearer_auth": [] | ||
}, | ||
{ | ||
"basic_auth": [] | ||
} | ||
], | ||
"parameters": [ | ||
{ | ||
"name": "fileId", | ||
"in": "query", | ||
"description": "ID of the file", | ||
"schema": { | ||
"type": "integer", | ||
"format": "int64", | ||
"default": 1 | ||
} | ||
}, | ||
{ | ||
"name": "x", | ||
"in": "query", | ||
"description": "Width of the preview", | ||
"schema": { | ||
"type": "integer", | ||
"format": "int64", | ||
"default": 32 | ||
} | ||
}, | ||
{ | ||
"name": "y", | ||
"in": "query", | ||
"description": "Height of the preview", | ||
"schema": { | ||
"type": "integer", | ||
"format": "int64", | ||
"default": 32 | ||
} | ||
}, | ||
{ | ||
"name": "a", | ||
"in": "query", | ||
"description": "Whether to crop the preview", | ||
"schema": { | ||
"type": "integer", | ||
"default": 0 | ||
} | ||
} | ||
], | ||
"responses": { | ||
"200": { | ||
"description": "Preview returned", | ||
"content": { | ||
"*/*": { | ||
"schema": { | ||
"type": "string", | ||
"format": "binary" | ||
} | ||
} | ||
} | ||
}, | ||
"400": { | ||
"description": "Getting preview is not possible", | ||
"content": { | ||
"application/json": { | ||
"schema": {} | ||
} | ||
} | ||
}, | ||
"404": { | ||
"description": "Preview not found", | ||
"content": { | ||
"application/json": { | ||
"schema": {} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"tags": [] | ||
} |