user-info 8.1.0
Install from the command line:
Learn more about npm packages
$ npm install @dlr-eoc/user-info@8.1.0
Install via package.json:
"@dlr-eoc/user-info": "8.1.0"
About this version
For a example see demo auth
- "@dlr-eoc/user-info"
This service (e.g. basic-auth.service) includes your business logic for authentication and authorization
This service protects your routes and is registered in the AppRoutingModule
import { UserInfoModule } from '@dlr-eoc/user-info';
import { BasicAuthService } from './auth/basic-auth.service';
import { HttpAuthInterceptor } from './auth/http-auth.interceptor';
...
imports: [
...
UserInfoModule
]
providers: [
BasicAuthService,
{
provide: HTTP_INTERCEPTORS,
useFactory: (BasicAuthService) => {
return new HttpAuthInterceptor(BasicAuthService);
},
deps: [BasicAuthService],
multi: true
}
]
===
This library was generated with Angular CLI version 8.2.14.
Run ng generate component component-name --project user-info
to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module --project user-info
.
Note: Don't forget to add
--project user-info
or else it will be added to the default project in yourangular.json
file.
Run ng build user-info
to build the project. The build artifacts will be stored in the dist/
directory.
Run ng test user-info
to execute the unit tests via Karma.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI README.
Assets
- user-info-8.1.0-npm.tgz
Download activity
- Total downloads 0
- Last 30 days 0
- Last week 0
- Today 0