Commit e871b3db authored by Tien Thinh NGUYEN's avatar Tien Thinh NGUYEN

Add entry point to add NSSAI

parent 3c6b0792
......@@ -45,6 +45,10 @@ void AMFConfigurationApi::setupRoutes() {
*router, base + amf_cfg.sbi_api_version + "/configuration/",
Routes::bind(&AMFConfigurationApi::read_configuration_handler, this));
Routes::PUT(
*router, base + amf_cfg.sbi_api_version + "/configuration/nssai",
Routes::bind(&AMFConfigurationApi::create_nssai_handler, this));
// Default handler, called when a route is not found
router->addCustomHandler(Routes::bind(
&AMFConfigurationApi::configuration_api_default_handler, this));
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment