diff options
author | crupest <crupest@outlook.com> | 2023-01-03 20:12:46 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-01-03 20:12:46 +0800 |
commit | d5bfd474505a258c534938da695574e417571b48 (patch) | |
tree | c05645f596e044a064f6e66bbdc9fabafe527164 | |
parent | 93a13a46fca7f19169f5985427cef7ce68b2315c (diff) | |
download | crupest-d5bfd474505a258c534938da695574e417571b48.tar.gz crupest-d5bfd474505a258c534938da695574e417571b48.tar.bz2 crupest-d5bfd474505a258c534938da695574e417571b48.zip |
Disable secrets api now.
-rw-r--r-- | docker/crupest-api/CrupestApi/CrupestApi/Program.cs | 3 |
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();
|