diff --git a/app/Services/UserService.php b/app/Services/UserService.php index 9be4e8a4..42b955e2 100644 --- a/app/Services/UserService.php +++ b/app/Services/UserService.php @@ -135,6 +135,13 @@ class UserService extends Service return $user; } + /** + * Return true or false if a pilot ID already exists + * + * @param int $pilot_id + * + * @return bool + */ public function isPilotIdAlreadyUsed(int $pilot_id): bool { return User::where('pilot_id', '=', $pilot_id)->exists(); diff --git a/modules/Importer/Resources/views/step1-configure.blade.php b/modules/Importer/Resources/views/step1-configure.blade.php index 138df6f8..41f01ce3 100644 --- a/modules/Importer/Resources/views/step1-configure.blade.php +++ b/modules/Importer/Resources/views/step1-configure.blade.php @@ -10,6 +10,8 @@

IMPORTANT NOTES