Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Commit

Permalink
fix(notifications): recent is a property
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Mar 15, 2017
1 parent f8032ed commit 5714c73
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/app/notifications/notifications.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ import { Notification } from './notification';
import { Observable } from 'rxjs';
export class Notifications {

recent: Observable<Notification[]>;

message(notification: Notification): Observable<NotificationAction> {
throw new Error('Not yet implemented');
}

recent(): Observable<Notification[]> {
throw new Error('Not yet implemented');
}

}

0 comments on commit 5714c73

Please sign in to comment.