Skip to content

Commit

Permalink
fix: add config service in exports
Browse files Browse the repository at this point in the history
  • Loading branch information
uzenith360 committed Mar 6, 2023
1 parent 4f194c6 commit c7991fa
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { TestBed } from '@angular/core/testing';
import { MatDialog } from '@angular/material/dialog';

import { AuthInterceptorService } from './auth-interceptor.service';
import EnvironmentConfigService from './environment-config.service';
import { EnvironmentConfigService } from './environment-config.service';

describe('AuthInterceptorService', () => {
beforeEach(
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-jwt-auth/src/lib/auth-interceptor.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { catchError, switchMap } from 'rxjs/operators';

import { AuthManagerService } from './auth-manager.service';
import { EnvironmentConfig } from './environment-config.interface';
import EnvironmentConfigService from './environment-config.service';
import { EnvironmentConfigService } from './environment-config.service';

@Injectable({
providedIn: 'root'
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-jwt-auth/src/lib/auth-manager.guard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Observable } from 'rxjs';

import { AuthManagerService } from './auth-manager.service';
import { EnvironmentConfig } from './environment-config.interface';
import EnvironmentConfigService from './environment-config.service';
import { EnvironmentConfigService } from './environment-config.service';

@Injectable({
providedIn: 'root'
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-jwt-auth/src/lib/auth-manager.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { TestBed } from '@angular/core/testing';
import { MatDialog } from '@angular/material/dialog';

import { AuthManagerService } from './auth-manager.service';
import EnvironmentConfigService from './environment-config.service';
import { EnvironmentConfigService } from './environment-config.service';

describe('AuthManagerService', () => {
beforeEach(() => TestBed.configureTestingModule(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { MatDialogModule, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatInputModule } from '@angular/material/input';
import EnvironmentConfigService from '../environment-config.service';
import { EnvironmentConfigService } from '../environment-config.service';

import { AuthModalComponent } from './auth-modal.component';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Validators, UntypedFormBuilder } from '@angular/forms';
import { AuthService } from '../auth.service';
import {JWTAndUser} from '../jwt-and-user.interface';
import { SubSink } from 'subsink';
import EnvironmentConfigService from '../environment-config.service';
import { EnvironmentConfigService } from '../environment-config.service';
import { EnvironmentConfig } from '../environment-config.interface';

@Component({
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-jwt-auth/src/lib/auth.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { HttpClient } from '@angular/common/http';
import { TestBed } from '@angular/core/testing';

import { AuthService } from './auth.service';
import EnvironmentConfigService from './environment-config.service';
import { EnvironmentConfigService } from './environment-config.service';

describe('AuthService', () => {
beforeEach(() => TestBed.configureTestingModule(
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-jwt-auth/src/lib/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { JwtInterface as JWT } from '@uzenith360/jwt-utils';
import { HttpHelpers } from './http-helpers';
import { EnvironmentConfig } from './environment-config.interface';
import HttpError from './http-error';
import EnvironmentConfigService from './environment-config.service';
import { EnvironmentConfigService } from './environment-config.service';

@Injectable({
providedIn: 'root'
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-jwt-auth/src/lib/jwt-auth.service.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { TestBed } from '@angular/core/testing';
import EnvironmentConfigService from './environment-config.service';
import { EnvironmentConfigService } from './environment-config.service';

import { JwtAuthService } from './jwt-auth.service';

Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-jwt-auth/src/lib/jwt-auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { JwtHelperService } from '@auth0/angular-jwt';
import {JwtInterface as JWT} from '@uzenith360/jwt-utils';
import {User} from './user.interface';
import { EnvironmentConfig } from './environment-config.interface';
import EnvironmentConfigService from './environment-config.service';
import { EnvironmentConfigService } from './environment-config.service';
import {JWTAndUser} from './jwt-and-user.interface';

@Injectable({
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-jwt-auth/src/lib/user.service.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HttpClient } from '@angular/common/http';
import { TestBed } from '@angular/core/testing';
import EnvironmentConfigService from './environment-config.service';
import { EnvironmentConfigService } from './environment-config.service';

import { UserService } from './user.service';

Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-jwt-auth/src/lib/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { map, catchError } from 'rxjs/operators';
import {User} from './user.interface';
import { HttpHelpers } from './http-helpers';
import { EnvironmentConfig } from './environment-config.interface';
import EnvironmentConfigService from './environment-config.service';
import { EnvironmentConfigService } from './environment-config.service';

@Injectable({
providedIn: 'root'
Expand Down

0 comments on commit c7991fa

Please sign in to comment.