Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/Http/Controllers/PortalsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@ public function importUsers(Request $request): JsonResponse
$abbreviation = 'ET';
} elseif ($abbreviation == 'ET-MASTER') {
$abbreviation = 'ET';
} elseif ($abbreviation == 'ISE-MASTER') {
} else if($abbreviation == 'IS-MASTER' ) {
$abbreviation = 'WI';
} else if($abbreviation == 'ISE-MASTER' || $abbreviation == 'INF-MASTER') {
$abbreviation = 'INF';
} else {
$abbreviation = 'INF';
Expand Down