Skip to content

Commit 45e9f45

Browse files
committed
resolved #193: removed not used lodash imports
1 parent f65a944 commit 45e9f45

File tree

5 files changed

+6
-16
lines changed

5 files changed

+6
-16
lines changed

angular/src/account/login/login.service.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Injectable } from '@angular/core';
1+
import { Injectable } from '@angular/core';
22
import { Router } from '@angular/router';
33
import { TokenAuthServiceProxy, AuthenticateModel, AuthenticateResultModel, ExternalLoginProviderInfoModel, ExternalAuthenticateModel, ExternalAuthenticateResultModel } from '@shared/service-proxies/service-proxies';
44
import { UrlHelper } from '@shared/helpers/UrlHelper';
@@ -9,8 +9,6 @@ import { LogService } from '@abp/log/log.service';
99
import { TokenService } from '@abp/auth/token.service';
1010
import { UtilsService } from '@abp/utils/utils.service';
1111

12-
import * as _ from 'lodash';
13-
1412
@Injectable()
1513
export class LoginService {
1614

@@ -88,4 +86,4 @@ export class LoginService {
8886
this.authenticateResult = null;
8987
this.rememberMe = false;
9088
}
91-
}
89+
}

angular/src/app/tenants/create-tenant/create-tenant.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import { Component, ViewChild, Injector, Output, EventEmitter, ElementRef } from '@angular/core';
1+
import { Component, ViewChild, Injector, Output, EventEmitter, ElementRef } from '@angular/core';
22
import { ModalDirective } from 'ngx-bootstrap';
33
import { TenantServiceProxy, CreateTenantDto } from '@shared/service-proxies/service-proxies';
44
import { AppComponentBase } from '@shared/app-component-base';
55

6-
import * as _ from "lodash";
7-
86
@Component({
97
selector: 'create-tenant-modal',
108
templateUrl: './create-tenant.component.html'

angular/src/app/tenants/edit-tenant/edit-tenant.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import { Component, ViewChild, Injector, Output, EventEmitter, ElementRef} from '@angular/core';
1+
import { Component, ViewChild, Injector, Output, EventEmitter, ElementRef} from '@angular/core';
22
import { ModalDirective } from 'ngx-bootstrap';
33
import { TenantServiceProxy, TenantDto } from '@shared/service-proxies/service-proxies';
44
import { AppComponentBase } from '@shared/app-component-base';
55

6-
import * as _ from "lodash";
7-
86
@Component({
97
selector: 'edit-tenant-modal',
108
templateUrl: './edit-tenant.component.html'

angular/src/app/users/create-user/create-user.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import { Component, ViewChild, Injector, Output, EventEmitter, ElementRef, OnInit } from '@angular/core';
1+
import { Component, ViewChild, Injector, Output, EventEmitter, ElementRef, OnInit } from '@angular/core';
22
import { ModalDirective } from 'ngx-bootstrap';
33
import { UserServiceProxy, CreateUserDto, RoleDto } from '@shared/service-proxies/service-proxies';
44
import { AppComponentBase } from '@shared/app-component-base';
55

6-
import * as _ from "lodash";
7-
86
@Component({
97
selector: 'create-user-modal',
108
templateUrl: './create-user.component.html'

angular/src/app/users/edit-user/edit-user.component.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
import { Component, ViewChild, Injector, Output, EventEmitter, ElementRef } from '@angular/core';
1+
import { Component, ViewChild, Injector, Output, EventEmitter, ElementRef } from '@angular/core';
22
import { ModalDirective } from 'ngx-bootstrap';
33
import { UserServiceProxy, UserDto, RoleDto } from '@shared/service-proxies/service-proxies';
44
import { AppComponentBase } from '@shared/app-component-base';
55

6-
import * as _ from "lodash";
7-
86
@Component({
97
selector: 'edit-user-modal',
108
templateUrl: './edit-user.component.html'

0 commit comments

Comments
 (0)