diff options
author | Linus Nordberg <linus@nordu.net> | 2015-07-16 11:52:27 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2015-07-16 11:52:27 +0200 |
commit | 9ab683a3e99348d3b452cf90a40fa01b6c3be72c (patch) | |
tree | aa90475c36dff1ab5f731a1e4f79f71dd37535a1 | |
parent | 1584b893313f0a1ce926115b98249068a213dd05 (diff) |
Generate allowed_client config matching new HTTP API.
-rwxr-xr-x | tools/compileconfig.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/compileconfig.py b/tools/compileconfig.py index c48ba66..755f57e 100755 --- a/tools/compileconfig.py +++ b/tools/compileconfig.py @@ -119,8 +119,7 @@ def allowed_clients_frontend(mergenodenames): def allowed_clients_public(): noauth = Symbol("noauth") return [ - ("/ct/v1/add-chain", noauth), - ("/ct/v1/add-pre-chain", noauth), + ("/ct/v1/add-blob", noauth), ("/ct/v1/get-sth", noauth), ("/ct/v1/get-sth-consistency", noauth), ("/ct/v1/get-proof-by-hash", noauth), |