Skip to content
Snippets Groups Projects
Commit 3dbe5120 authored by Michele Alberti's avatar Michele Alberti
Browse files

[Server] Make all server requests appear in the doc index.

parent 28386c0f
No related branches found
No related tags found
No related merge requests found
...@@ -307,7 +307,9 @@ let register_sig (type a b) (s : (a,b) signature) (process : rq -> a -> b) = ...@@ -307,7 +307,9 @@ let register_sig (type a b) (s : (a,b) signature) (process : rq -> a -> b) =
doc_input s.input @ doc_input s.input @
doc_output s.output doc_output s.output
in in
let _ = Doc.publish ~page:s.page ~name:s.name ~title description [] in let _ =
Doc.publish ~page:s.page ~name:s.name ~title ~index:[s.name] description []
in
Main.register s.kind s.name processor ; Main.register s.kind s.name processor ;
s.defined <- true s.defined <- true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment