s/IntegrationManager/Platform/

Because we call bots integrations and I'll get confused
This commit is contained in:
David Baker
2016-10-20 14:50:20 +01:00
parent ddb2ff5994
commit 1b0c561ac1
5 changed files with 20 additions and 20 deletions

View File

@@ -0,0 +1,16 @@
// @flow
export default class BasePlatform {
constructor() {
this.notificationCount = 0;
this.errorDidOccur = false;
}
setNotificationCount(count: number) {
this.notificationCount = count;
}
setErrorStatus(errorDidOccur: boolean) {
this.errorDidOccur = errorDidOccur;
}
}