searchbox

This commit is contained in:
2019-11-28 20:01:30 +01:00
committed by smuddy
parent 47f15f15ad
commit 6de7de7224
16 changed files with 141 additions and 16 deletions

View File

@@ -11,7 +11,7 @@ export class SongService {
constructor(private songDataService: SongDataService) {
}
public list = (): Observable<Song[]> => this.songDataService.list();
public list$ = (): Observable<Song[]> => this.songDataService.list();
public read = (songId: string): Observable<Song | undefined> => this.songDataService.read(songId);
}