From 68ac24bde58c4db44f271a40f2dce504ecf59494 Mon Sep 17 00:00:00 2001 From: velz Date: Tue, 14 May 2024 15:53:19 +0530 Subject: [PATCH] FEAT_SKELETON_DASH_NOTIFICATIONS --- app/Controllers/DashboardController.php | 5 ++++ app/Controllers/PendingActionsController.php | 26 ++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 app/Controllers/PendingActionsController.php diff --git a/app/Controllers/DashboardController.php b/app/Controllers/DashboardController.php index ccd39f50..1a370981 100644 --- a/app/Controllers/DashboardController.php +++ b/app/Controllers/DashboardController.php @@ -22,6 +22,11 @@ class DashboardController extends AdminController echo view('layout/footer'); } + public function dashboardNotifications() + { + //pull notofications to dashboard especially for file upload cases + } + } diff --git a/app/Controllers/PendingActionsController.php b/app/Controllers/PendingActionsController.php new file mode 100644 index 00000000..9670dbba --- /dev/null +++ b/app/Controllers/PendingActionsController.php @@ -0,0 +1,26 @@ +