mirror of
https://github.com/apricote/Listory.git
synced 2026-02-08 02:37:03 +00:00
feat(server): save genres for artists and albums
This can later be used for reports
This commit is contained in:
parent
9b96d0fab4
commit
3c6f3289f1
12 changed files with 225 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ import { Module } from "@nestjs/common";
|
|||
import { TypeOrmModule } from "@nestjs/typeorm";
|
||||
import { AlbumRepository } from "./album.repository";
|
||||
import { ArtistRepository } from "./artist.repository";
|
||||
import { GenreRepository } from "./genre.repository";
|
||||
import { MusicLibraryService } from "./music-library.service";
|
||||
import { TrackRepository } from "./track.repository";
|
||||
|
||||
|
|
@ -10,6 +11,7 @@ import { TrackRepository } from "./track.repository";
|
|||
TypeOrmModule.forFeature([
|
||||
AlbumRepository,
|
||||
ArtistRepository,
|
||||
GenreRepository,
|
||||
TrackRepository,
|
||||
]),
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue