mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
916 B
29 lines
916 B
import { ConfigStateService, MultiTenancyService, SubscriptionService } from '@abp/ng.core';
|
|
import { Component } from '@angular/core';
|
|
import { Observable } from 'rxjs';
|
|
import { map } from 'rxjs/operators';
|
|
import { eAccountComponents } from '../../enums/components';
|
|
|
|
@Component({
|
|
selector: 'abp-auth-wrapper',
|
|
templateUrl: './auth-wrapper.component.html',
|
|
exportAs: 'abpAuthWrapper',
|
|
providers: [SubscriptionService],
|
|
})
|
|
export class AuthWrapperComponent {
|
|
isMultiTenancyEnabled$ = this.configState.getDeep$('multiTenancy.isEnabled');
|
|
|
|
get enableLocalLogin$(): Observable<boolean> {
|
|
return this.configState
|
|
.getSetting$('Abp.Account.EnableLocalLogin')
|
|
.pipe(map(value => value?.toLowerCase() !== 'false'));
|
|
}
|
|
|
|
tenantBoxKey = eAccountComponents.TenantBox;
|
|
|
|
constructor(
|
|
public readonly multiTenancy: MultiTenancyService,
|
|
private configState: ConfigStateService,
|
|
) {}
|
|
}
|