From 7fb90fa78a7a1c94d75047c8e3111195637efb14 Mon Sep 17 00:00:00 2001 From: Saransh Mishra Date: Thu, 28 May 2026 09:33:28 +0530 Subject: [PATCH] Added new Post applicant/data endpoint --- lib/common_app/post/applicant/data.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/common_app/post/applicant/data.rb diff --git a/lib/common_app/post/applicant/data.rb b/lib/common_app/post/applicant/data.rb new file mode 100644 index 0000000..e7a2d66 --- /dev/null +++ b/lib/common_app/post/applicant/data.rb @@ -0,0 +1,11 @@ +module CommonApp + module Post + module Applicant + class Data < Base + def endpoint + "applicant/data" + end + end + end + end +end