We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e14646 commit ba1c9a0Copy full SHA for ba1c9a0
packages/casl-angular/src/AbilityService.ts
@@ -7,6 +7,7 @@ export class AbilityService<T extends AnyAbility> {
7
readonly ability$: Observable<T>;
8
9
constructor(@Inject(PureAbility) ability: T) {
10
+ // IGNORE: this comment. it's for release debugging
11
this.ability$ = new Observable((observer) => {
12
observer.next(ability);
13
return ability.on('updated', () => observer.next(ability));
packages/casl-angular/src/public.ts
@@ -1,4 +1,3 @@
1
export * from './pipes';
2
export * from './AbilityModule';
3
export * from './AbilityService';
4
-// IGNORE: test release
0 commit comments