Skip to content

Commit

Permalink
fix: missing HttpModule dependency
Browse files Browse the repository at this point in the history
Although HttpModule is going to be deprecated in v5, we should have it in imports until you switch to use HttpClientModule.
  • Loading branch information
maxisam authored Sep 14, 2017
1 parent 8c4880e commit 7eac8ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion angular-oauth2-oidc/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export * from './tokens';

@NgModule({
imports: [
CommonModule
CommonModule,
HttpModule
],
declarations: [
],
Expand Down

0 comments on commit 7eac8ae

Please sign in to comment.