Browse Source

feat(client): enforce encapsulation and immutability

pull/6957/head
KenTandrian 3 months ago
parent
commit
d3b46e675f
  1. 4
      apps/client/src/app/core/http-response.interceptor.ts

4
apps/client/src/app/core/http-response.interceptor.ts

@ -26,8 +26,8 @@ import { catchError, tap } from 'rxjs/operators';
@Injectable()
export class HttpResponseInterceptor implements HttpInterceptor {
public info: InfoItem;
public snackBarRef: MatSnackBarRef<TextOnlySnackBar> | undefined;
private readonly info: InfoItem;
private snackBarRef: MatSnackBarRef<TextOnlySnackBar> | undefined;
private readonly dataService = inject(DataService);
private readonly router = inject(Router);

Loading…
Cancel
Save