aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docker/crupest-api/CrupestApi/CrupestApi/Program.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi/Program.cs b/docker/crupest-api/CrupestApi/CrupestApi/Program.cs
index 8c8cd41..46648d9 100644
--- a/docker/crupest-api/CrupestApi/CrupestApi/Program.cs
+++ b/docker/crupest-api/CrupestApi/CrupestApi/Program.cs
@@ -18,6 +18,7 @@ var app = builder.Build();
app.UseCrudCore();
app.MapTodos("/api/todos");
-app.MapSecrets("/api/secrets");
+// TODO: It's not safe now!
+// app.MapSecrets("/api/secrets");
app.Run();