From 0dbf4d3f05dbaa99c5ccf7a48ba1b1302ba456c4 Mon Sep 17 00:00:00 2001
From: Eugen Ciur <eugen@papermerge.com>
Date: Sun, 7 Nov 2021 13:43:13 +0100
Subject: [PATCH] minor linting

---
 app/authenticators/auth-token.js  | 1 +
 app/base/routing.js               | 1 +
 app/session-stores/application.js | 1 +
 3 files changed, 3 insertions(+)

diff --git a/app/authenticators/auth-token.js b/app/authenticators/auth-token.js
index 3704479..538eaaf 100644
--- a/app/authenticators/auth-token.js
+++ b/app/authenticators/auth-token.js
@@ -1,5 +1,6 @@
 import Base from 'ember-simple-auth/authenticators/base';
 
+
 export default class AuthToken extends Base {
   /*
   Simple token based authenticator
diff --git a/app/base/routing.js b/app/base/routing.js
index 81cf9f3..20997fd 100644
--- a/app/base/routing.js
+++ b/app/base/routing.js
@@ -1,6 +1,7 @@
 import Route from '@ember/routing/route';
 import { inject as service } from '@ember/service';
 
+
 export default class BaseRoute extends Route {
   @service session;
   @service currentUser;
diff --git a/app/session-stores/application.js b/app/session-stores/application.js
index d4207ba..d7c986b 100644
--- a/app/session-stores/application.js
+++ b/app/session-stores/application.js
@@ -1,5 +1,6 @@
 import CookieStore from 'ember-simple-auth/session-stores/cookie';
 
+
 export default class ApplicationSessionStore extends CookieStore {
   // pass
 }
-- 
GitLab