diff --git a/core/src/Settings/Rest/SettingsRestEndPoint.php b/core/src/Settings/Rest/SettingsRestEndPoint.php new file mode 100644 index 00000000..0ce466a0 --- /dev/null +++ b/core/src/Settings/Rest/SettingsRestEndPoint.php @@ -0,0 +1,26 @@ + UIManager::getInstance()->getCompanyLogoUrl(), + 'Company: Name' => $sm->getSetting('Company: Name'), + 'Attendance: Request Attendance Location on Mobile' => + $sm->getSetting('Attendance: Request Attendance Location on Mobile'), + ]; + + return new IceResponse(IceResponse::SUCCESS, ['data' => $data]); + } +}