mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
#572 unit tests and code fixes
This commit is contained in:
@@ -35,13 +35,15 @@ export class AlfrescoAuthenticationService extends AlfrescoAuthenticationBase {
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @param alfrescoSetting
|
||||
* @param settingsService
|
||||
* @param http
|
||||
*/
|
||||
constructor(alfrescoSetting: AlfrescoSettingsService,
|
||||
constructor(settingsService: AlfrescoSettingsService,
|
||||
http: Http) {
|
||||
super(alfrescoSetting, http);
|
||||
this.createProviderInstance(alfrescoSetting.getProviders());
|
||||
super(settingsService, http);
|
||||
if (settingsService) {
|
||||
this.createProviderInstance(settingsService.getProviders());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user