#17 Used external Alfresco Login component

This commit is contained in:
mauriziovitale84
2016-04-22 11:27:14 +01:00
parent 5fc8ea1773
commit 3b9de9d9de
6 changed files with 13 additions and 8 deletions

View File

@@ -2,12 +2,12 @@ import {bootstrap} from 'angular2/platform/browser';
import {AppComponent} from './app.component';
import {ROUTER_PROVIDERS} from 'angular2/router';
import {HTTP_PROVIDERS} from 'angular2/http';
import {Authentication} from './services/authentication';
import {ALFRESCO_AUTHENTICATION} from 'ng2-alfresco-login/ng2-alfresco-login';
import {ALFRESCO_PROVIDERS} from 'ng2-alfresco-documentlist/ng2-alfresco-documentlist';
bootstrap(AppComponent, [
ROUTER_PROVIDERS,
HTTP_PROVIDERS,
Authentication,
ALFRESCO_AUTHENTICATION,
ALFRESCO_PROVIDERS
]);