diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2022-12-22 16:31:58 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2022-12-22 16:32:07 +0100 |
| commit | 7b715eb1883c9caf7d4b5143b8f7720dd663acd8 (patch) | |
| tree | e593ddcd76c769f5cf430c9e76e7c55804bd90d3 /code/api/Endpoints | |
| parent | 58ef5833b3f77f321c587dd86448c888029016ce (diff) | |
| download | storage-7b715eb1883c9caf7d4b5143b8f7720dd663acd8.tar.xz storage-7b715eb1883c9caf7d4b5143b8f7720dd663acd8.zip | |
feat: Add folder parent
Diffstat (limited to 'code/api/Endpoints')
| -rw-r--r-- | code/api/Endpoints/Storage/TreeEndpoint.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/code/api/Endpoints/Storage/TreeEndpoint.cs b/code/api/Endpoints/Storage/TreeEndpoint.cs new file mode 100644 index 0000000..857a570 --- /dev/null +++ b/code/api/Endpoints/Storage/TreeEndpoint.cs @@ -0,0 +1,9 @@ +namespace I2R.Storage.Api.Endpoints.Storage; + +public class TreeEndpoint : EndpointBase +{ + [HttpGet("~/storage/tree")] + public async Task<ActionResult> Handle(Guid parent = default) { + return Ok(); + } +}
\ No newline at end of file |
