15.0.0-next.1 • Published 9 months ago

@dlr-eoc/user-info v15.0.0-next.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
9 months ago

@dlr-eoc/user-info

how to use this in a ukis-angular (@dlr-eoc/core-ui) project

For a example see demo auth

add the following dependencies to the package.json

  • "@dlr-eoc/user-info"

create a auth service

This service (e.g. basic-auth.service) includes your business logic for authentication and authorization

create an AuthGuardService

This service protects your routes and is registered in the AppConfig or App Component

add the following to the app.component.ts

import { LoginComponent, RegisterComponent, UserDetailsComponent } from '@dlr-eoc/user-info';
import { BasicAuthService } from './auth/basic-auth.service';
import { HttpAuthInterceptor } from './auth/http-auth.interceptor';

...

 standalone: true,
 imports: [
    ...
    LoginComponent, RegisterComponent, UserDetailsComponent
  ]

  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.

Code scaffolding

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 your angular.json file.

Build

Run ng build user-info to build the project. The build artifacts will be stored in the dist/ directory.

Running unit tests

Run ng test user-info to execute the unit tests via Karma.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

15.0.0-next.1

9 months ago

13.0.1-next.0

1 year ago

14.0.0

11 months ago

13.0.0

1 year ago

14.0.0-next.0

1 year ago

15.0.0-next.0

9 months ago

12.0.1-next.4

1 year ago

12.0.1-next.3

1 year ago

12.0.1-next.1

1 year ago

12.0.1-next.2

1 year ago

12.0.1-next.0

2 years ago

12.0.0

2 years ago

12.0.0-alpha.1

2 years ago

12.0.0-alpha.0

2 years ago

12.0.0-alpha.2

2 years ago

11.1.0

2 years ago

11.0.0

2 years ago

10.0.0

3 years ago

10.1.0

3 years ago

11.0.0-alpha.1

3 years ago

10.0.0-next.0

3 years ago

11.0.0-alpha.0

3 years ago

10.0.0-next.1

3 years ago

9.0.0

3 years ago

8.1.0

3 years ago

8.0.1

4 years ago

8.0.0-next.3

4 years ago

8.0.0-next.4

4 years ago

8.0.0

4 years ago

8.0.0-next.2

4 years ago

8.0.0-next.1

4 years ago

8.0.0-next.0

4 years ago

7.3.2-next.3

4 years ago

7.3.2-next.2

4 years ago

7.3.2-next.1

4 years ago

7.3.1

4 years ago

7.3.0-next.3

4 years ago

7.3.0-next.2

4 years ago

7.3.0-next.1

4 years ago

7.3.0-next.0

4 years ago

7.2.0

5 years ago

7.0.0

5 years ago

7.1.0

5 years ago