Skip to content

Commit

Permalink
Step 7.9: Added phone service to NgModule
Browse files Browse the repository at this point in the history
  • Loading branch information
DAB0mB committed Jun 22, 2017
1 parent 5a8ac78 commit 4b4c09d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { StatusBar } from '@ionic-native/status-bar';
import { MomentModule } from 'angular2-moment';
import { ChatsPage } from '../pages/chats/chats';
import { MessagesPage } from '../pages/messages/messages';
import { PhoneService } from '../services/phone';
import { MyApp } from './app.component';

@NgModule({
Expand All @@ -28,7 +29,8 @@ import { MyApp } from './app.component';
providers: [
StatusBar,
SplashScreen,
{provide: ErrorHandler, useClass: IonicErrorHandler}
{provide: ErrorHandler, useClass: IonicErrorHandler},
PhoneService
]
})
export class AppModule {}

0 comments on commit 4b4c09d

Please sign in to comment.