diff --git a/NodeApp/src/commander/assignment/subcommands/correction/subcommands/AssignmentCorrectionLinkUpdateCommand.ts b/NodeApp/src/commander/assignment/subcommands/correction/subcommands/AssignmentCorrectionLinkUpdateCommand.ts
index cc790d2cd72ef1e395e7a24eae7e297ae4cf8056..30c3f40f87f7eaf3af4c92ab556e3bfe2d8e65f1 100644
--- a/NodeApp/src/commander/assignment/subcommands/correction/subcommands/AssignmentCorrectionLinkUpdateCommand.ts
+++ b/NodeApp/src/commander/assignment/subcommands/correction/subcommands/AssignmentCorrectionLinkUpdateCommand.ts
@@ -1,9 +1,9 @@
 import CommanderCommand   from '../../../../CommanderCommand.js';
 import ora                from 'ora';
 import DojoBackendManager from '../../../../../managers/DojoBackendManager.js';
-import SessionManager     from '../../../../../managers/SessionManager.js';
 import Assignment         from '../../../../../sharedByClients/models/Assignment.js';
 import TextStyle          from '../../../../../types/TextStyle.js';
+import GlobalHelper       from '../../../../../helpers/GlobalHelper.js';
 
 
 abstract class AssignmentCorrectionLinkUpdateCommand extends CommanderCommand {
@@ -32,23 +32,10 @@ abstract class AssignmentCorrectionLinkUpdateCommand extends CommanderCommand {
 
         // Check access
         {
-            console.log(TextStyle.BLOCK('Please wait while we check access...'));
-
-            const assignmentGetSpinner: ora.Ora = ora('Checking if assignment exists').start();
-            assignment = await DojoBackendManager.getAssignment(options.assignment);
+            assignment = await GlobalHelper.checkAssignmentCorrectionAccess(options.assignment);
             if ( !assignment ) {
-                assignmentGetSpinner.fail(`The assignment doesn't exists`);
-                return;
-            }
-            assignmentGetSpinner.succeed(`The assignment exists`);
-
-
-            const assignmentAccessSpinner: ora.Ora = ora('Checking assignment access').start();
-            if ( assignment.staff.find(staff => staff.id === SessionManager.profile?.id) === undefined ) {
-                assignmentAccessSpinner.fail(`You are not in the staff of the assignment`);
                 return;
             }
-            assignmentAccessSpinner.succeed(`You are in the staff of the assignment`);
 
 
             const assignmentPublishedSpinner: ora.Ora = ora('Checking assignment').start();
diff --git a/NodeApp/src/commander/assignment/subcommands/correction/subcommands/AssignmentCorrectionUnlinkCommand.ts b/NodeApp/src/commander/assignment/subcommands/correction/subcommands/AssignmentCorrectionUnlinkCommand.ts
index ceb10cd00f7c4e8cd042ee34df27cd24f5df48a9..78cf1cbba971cf21ce17c0af8c03e30e66a9346c 100644
--- a/NodeApp/src/commander/assignment/subcommands/correction/subcommands/AssignmentCorrectionUnlinkCommand.ts
+++ b/NodeApp/src/commander/assignment/subcommands/correction/subcommands/AssignmentCorrectionUnlinkCommand.ts
@@ -1,9 +1,8 @@
 import Assignment         from '../../../../../sharedByClients/models/Assignment.js';
-import ora                from 'ora';
 import TextStyle          from '../../../../../types/TextStyle.js';
 import DojoBackendManager from '../../../../../managers/DojoBackendManager.js';
-import SessionManager     from '../../../../../managers/SessionManager.js';
 import CommanderCommand   from '../../../../CommanderCommand.js';
+import GlobalHelper       from '../../../../../helpers/GlobalHelper.js';
 
 
 class AssignmentCorrectionLinkCommand extends CommanderCommand {
@@ -22,23 +21,10 @@ class AssignmentCorrectionLinkCommand extends CommanderCommand {
 
         // Check access
         {
-            console.log(TextStyle.BLOCK('Please wait while we check access...'));
-
-            const assignmentGetSpinner: ora.Ora = ora('Checking if assignment exists').start();
-            assignment = await DojoBackendManager.getAssignment(options.assignment);
+            assignment = await GlobalHelper.checkAssignmentCorrectionAccess(options.assignment);
             if ( !assignment ) {
-                assignmentGetSpinner.fail(`The assignment doesn't exists`);
-                return;
-            }
-            assignmentGetSpinner.succeed(`The assignment exists`);
-
-
-            const assignmentAccessSpinner: ora.Ora = ora('Checking assignment access').start();
-            if ( assignment.staff.find(staff => staff.id === SessionManager.profile?.id) === undefined ) {
-                assignmentAccessSpinner.fail(`You are not in the staff of the assignment`);
                 return;
             }
-            assignmentAccessSpinner.succeed(`You are in the staff of the assignment`);
         }
 
         // Link the exercise
diff --git a/NodeApp/src/commander/exercise/subcommands/ExerciseCorrectionCommand.ts b/NodeApp/src/commander/exercise/subcommands/ExerciseCorrectionCommand.ts
index 5e6310b214c162fa585584c4c3e46a61aab96595..0a7aac7bb2302c1b1ec538803f4e87c1fb4d567e 100644
--- a/NodeApp/src/commander/exercise/subcommands/ExerciseCorrectionCommand.ts
+++ b/NodeApp/src/commander/exercise/subcommands/ExerciseCorrectionCommand.ts
@@ -42,7 +42,7 @@ class ExerciseCorrectionCommand extends CommanderCommand {
             const authors = correction.name.replace(correction.assignmentName, '').split('-')[2].trim();
 
             return {
-                name : (correction.correctionDescription && correction.correctionDescription != '' ? `${ correction.correctionDescription } (${ authors })` : authors),
+                name : (correction.correctionDescription && correction.correctionDescription !== '' ? `${ correction.correctionDescription } (${ authors })` : authors),
                 value: correction.correctionCommit?.web_url?.replace('/commit/', '/tree/') ?? ''
             };
         });
diff --git a/NodeApp/src/commander/exercise/subcommands/ExerciseCreateCommand.ts b/NodeApp/src/commander/exercise/subcommands/ExerciseCreateCommand.ts
index b0675bae4929516b217f87d51dfd128003bb9f69..73a67c5387e448c4e904808e9c4341cbde33c971 100644
--- a/NodeApp/src/commander/exercise/subcommands/ExerciseCreateCommand.ts
+++ b/NodeApp/src/commander/exercise/subcommands/ExerciseCreateCommand.ts
@@ -72,7 +72,7 @@ class ExerciseCreateCommand extends CommanderCommand {
                     }).start().info();
             };
 
-            oraInfo(`${ TextStyle.WARNING('You already created ' + this.assignment.myExercises.length + ' exercises for this assignment:') }`, 4);
+            oraInfo(TextStyle.WARNING(`You already created ${ this.assignment.myExercises.length } exercises for this assignment:`), 4);
 
             for ( const exercise of this.assignment.myExercises ) {
                 oraInfo(`${ TextStyle.LIST_ITEM_NAME('Exercice Id:') } ${ exercise.id }`, 8);
diff --git a/NodeApp/src/helpers/GlobalHelper.ts b/NodeApp/src/helpers/GlobalHelper.ts
index d14735a8160fde93be2a725420d3532361c05872..d79317fd487a954157d4287071daaf8b345f578a 100644
--- a/NodeApp/src/helpers/GlobalHelper.ts
+++ b/NodeApp/src/helpers/GlobalHelper.ts
@@ -1,6 +1,10 @@
 import { Command, Option } from 'commander';
 import Config              from '../config/Config.js';
 import SessionManager      from '../managers/SessionManager.js';
+import TextStyle           from '../types/TextStyle.js';
+import ora                 from 'ora';
+import DojoBackendManager  from '../managers/DojoBackendManager.js';
+import Assignment          from '../sharedByClients/models/Assignment.js';
 
 
 class GlobalHelper {
@@ -20,6 +24,29 @@ class GlobalHelper {
 
         return SessionManager.gitlabCredentials.accessToken ?? '';
     };
+
+
+    public async checkAssignmentCorrectionAccess(assignmentName: string): Promise<Assignment | undefined> {
+        console.log(TextStyle.BLOCK('Please wait while we check access...'));
+
+        const assignmentGetSpinner: ora.Ora = ora('Checking if assignment exists').start();
+        const assignment = await DojoBackendManager.getAssignment(assignmentName);
+        if ( !assignment ) {
+            assignmentGetSpinner.fail(`The assignment doesn't exists`);
+            return undefined;
+        }
+        assignmentGetSpinner.succeed(`The assignment exists`);
+
+
+        const assignmentAccessSpinner: ora.Ora = ora('Checking assignment access').start();
+        if ( assignment.staff.find(staff => staff.id === SessionManager.profile?.id) === undefined ) {
+            assignmentAccessSpinner.fail(`You are not in the staff of the assignment`);
+            return undefined;
+        }
+        assignmentAccessSpinner.succeed(`You are in the staff of the assignment`);
+
+        return assignment;
+    }
 }