aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/Endpoints
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-12-22 16:31:58 +0100
committerivarlovlie <git@ivarlovlie.no>2022-12-22 16:32:07 +0100
commit7b715eb1883c9caf7d4b5143b8f7720dd663acd8 (patch)
treee593ddcd76c769f5cf430c9e76e7c55804bd90d3 /code/api/Endpoints
parent58ef5833b3f77f321c587dd86448c888029016ce (diff)
downloadstorage-7b715eb1883c9caf7d4b5143b8f7720dd663acd8.tar.xz
storage-7b715eb1883c9caf7d4b5143b8f7720dd663acd8.zip
feat: Add folder parent
Diffstat (limited to 'code/api/Endpoints')
-rw-r--r--code/api/Endpoints/Storage/TreeEndpoint.cs9
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