Skip to content

Commit

Permalink
sonar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
furknyavuz committed Jun 27, 2022
1 parent 8a779d7 commit f749b81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/consumer/auth-queue.consumer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class AuthQueueConsumer implements QueueConsumer {
let requeue = false;

if ( message.example ) {
var exampleHook = async () => {
const exampleHook = async () => {
console.log( 'Auth server example' );
};

Expand Down
2 changes: 1 addition & 1 deletion app/route/index.route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export namespace Routes {
applicationName: 'AuthServer',
} as MountAssets;

var routes: Array<Route> = [];
const routes: Array<Route> = [];

routes.push( { name: subRoutes.auth, router: authRouter } );
routes.push( { name: subRoutes.info, router: infoRouter } );
Expand Down

0 comments on commit f749b81

Please sign in to comment.