Created
April 28, 2019 14:56
-
-
Save stalniy/97a7b772652e34e48ac3f02eae4a8c0d to your computer and use it in GitHub Desktop.
CASL in Angular app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { BrowserModule } from '@angular/platform-browser'; | |
import { NgModule } from '@angular/core'; | |
import { AbilityModule } from '@casl/angular'; | |
import { Ability } from '@casl/ability'; | |
import { defineAbilitiesFor, createAbility } from '../services/ability'; | |
import { AppRoutingModule } from './routing.module'; | |
@NgModule({ | |
declarations: [ | |
... | |
], | |
imports: [ | |
..., | |
BrowserModule, | |
AppRoutingModule, | |
AbilityModule.forRoot(), | |
], | |
providers: [ | |
{ provide: Ability, useFactory: createAbility } | |
], | |
bootstrap: [App] | |
}) | |
export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment