Add TaskEvent registry
This updates the parse registries script and
adds the task registry to be used by task service.
This templates the original Base Registry so it
can be reused for all registries.
Tested: script works, validator passes
Change-Id: Id1cf3a41fb76ccaadace114725480f410bfba3e8
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/redfish-core/include/redfish.hpp b/redfish-core/include/redfish.hpp
index 6c8be39..aacfda0 100644
--- a/redfish-core/include/redfish.hpp
+++ b/redfish-core/include/redfish.hpp
@@ -149,10 +149,8 @@
nodes.emplace_back(
std::make_unique<MessageRegistryFileCollection>(app));
- nodes.emplace_back(std::make_unique<BaseMessageRegistryFile>(app));
- nodes.emplace_back(std::make_unique<BaseMessageRegistry>(app));
- nodes.emplace_back(std::make_unique<OpenBMCMessageRegistryFile>(app));
- nodes.emplace_back(std::make_unique<OpenBMCMessageRegistry>(app));
+ nodes.emplace_back(std::make_unique<MessageRegistryFile>(app));
+ nodes.emplace_back(std::make_unique<MessageRegistry>(app));
nodes.emplace_back(std::make_unique<CertificateService>(app));
nodes.emplace_back(
std::make_unique<CertificateActionsReplaceCertificate>(app));