AVP-78 Feature to check if parents looked at report card
This commit is contained in:
@@ -108,6 +108,7 @@ $routes->get('administrator/student-score-card', 'View\StudentController::scoreC
|
||||
// API for report card meta (students, class sections, school years)
|
||||
$routes->get('api/printables/report-card/meta', 'View\ReportCardsController::reportCardMeta', ['filter' => 'auth']);
|
||||
$routes->get('api/printables/report-card/completeness', 'View\ReportCardsController::reportCardCompleteness', ['filter' => 'auth']);
|
||||
$routes->get('api/printables/report-card/ack', 'View\ReportCardsController::reportCardAcknowledgement', ['filter' => 'auth']);
|
||||
|
||||
//Badges
|
||||
$routes->get('printables_reports/badge_form', 'View\BadgesController::badgeForm');
|
||||
@@ -330,6 +331,9 @@ $routes->post('/administrator/scores/update/{id}', 'View\ScoreController::update
|
||||
// Route to delete a score record
|
||||
$routes->get('/administrator/scores/delete/{id}', 'View\ScoreController::destroy');
|
||||
$routes->get('/parent/scores', 'View\ScoreController::viewStudentScore');
|
||||
$routes->get('parent/report-cards', 'ParentReportCardController::index', ['filter' => 'auth:parent']);
|
||||
$routes->get('parent/report-cards/view/(:num)', 'ParentReportCardController::view/$1', ['filter' => 'auth:parent']);
|
||||
$routes->post('parent/report-cards/sign/(:num)', 'ParentReportCardController::sign/$1', ['filter' => 'auth:parent']);
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user