Commit 0c0e197c authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Code cleanup

parent 3054c439
......@@ -84,7 +84,6 @@ void AuthenticationStatusDocumentApi::setupRoutes() {
void AuthenticationStatusDocumentApi::create_authentication_status_handler(
const Pistache::Rest::Request &request,
Pistache::Http::ResponseWriter response) {
Logger::udr_server().info("AuthenticationStatus Method: PUT!");
// Getting the path params
auto ueId = request.param(":ueId").as<std::string>();
......@@ -114,7 +113,6 @@ void AuthenticationStatusDocumentApi::create_authentication_status_handler(
void AuthenticationStatusDocumentApi::delete_authentication_status_handler(
const Pistache::Rest::Request &request,
Pistache::Http::ResponseWriter response) {
Logger::udr_server().info("AuthenticationStatus Method: DELETE!");
// Getting the path params
auto ueId = request.param(":ueId").as<std::string>();
......@@ -136,7 +134,6 @@ void AuthenticationStatusDocumentApi::delete_authentication_status_handler(
void AuthenticationStatusDocumentApi::query_authentication_status_handler(
const Pistache::Rest::Request &request,
Pistache::Http::ResponseWriter response) {
Logger::udr_server().info("AuthenticationStatus Method: GET!");
// Getting the path params
auto ueId = request.param(":ueId").as<std::string>();
......
......@@ -77,7 +77,6 @@ void AuthenticationSubscriptionDocumentApi::
modify_authentication_subscription_handler(
const Pistache::Rest::Request &request,
Pistache::Http::ResponseWriter response) {
Logger::udr_server().info("AuthenticationSubscription Method: PATCH!");
// Getting the path params
auto ueId = request.param(":ueId").as<std::string>();
......@@ -116,8 +115,6 @@ void AuthenticationSubscriptionDocumentApi::
read_authentication_subscription_handler(
const Pistache::Rest::Request &request,
Pistache::Http::ResponseWriter response) {
Logger::udr_server().info("AuthenticationSubscription Method: GET!");
// Getting the path params
auto ueId = request.param(":ueId").as<std::string>();
......
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