diff --git a/modules/console.cc b/modules/console.cc index f3f88b455..cc58b4195 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -12954,6 +12954,14 @@ console_cmd__fed__auth(opt &out, const string_view &line) return true; } + if(param["ids_only"] == "raw") + { + for(const string_view &event : auth_chain) + out << event << std::endl; + + return true; + } + std::vector events(size(auth_chain)); std::transform(begin(auth_chain), end(auth_chain), begin(events), [] (const json::object &event) -> m::event