From 8b4eab9b6ffa19bd6c5417095b5e9f8d40147469 Mon Sep 17 00:00:00 2001 From: vaishnavi-gupta18 Date: Thu, 2 Feb 2023 21:35:06 +0530 Subject: [PATCH] Add employee id in application scope --- omniport/core/open_auth/constants/data_points.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/omniport/core/open_auth/constants/data_points.py b/omniport/core/open_auth/constants/data_points.py index e79164e..33bb035 100644 --- a/omniport/core/open_auth/constants/data_points.py +++ b/omniport/core/open_auth/constants/data_points.py @@ -37,11 +37,13 @@ LEAVING_DATE = 'faculty_member.end_date' DESIGNATION = 'faculty_member.designation' DEPARTMENT = 'faculty_member.department.name' +EMPLOYEE_ID = 'faculty_member.employee_id' FACULTY_MEMBER_DATA_POINTS = ( (JOINING_DATE, 'Joining date'), (LEAVING_DATE, 'Leaving date'), (DESIGNATION, 'Designation'), (DEPARTMENT, 'Department'), + (EMPLOYEE_ID, 'Employee id'), ) # Biological information data points