draft: added feature artist collection attr
This commit is contained in:
parent
2b3f4d82d9
commit
8ccc28daf8
@ -107,9 +107,9 @@ class Song(Base):
|
|||||||
"lyrics_collection": Collection,
|
"lyrics_collection": Collection,
|
||||||
"artwork": Artwork,
|
"artwork": Artwork,
|
||||||
|
|
||||||
|
"album_collection": Collection,
|
||||||
"artist_collection": Collection,
|
"artist_collection": Collection,
|
||||||
"feature_artist_collection": Collection,
|
"feature_artist_collection": Collection,
|
||||||
"album_collection": Collection,
|
|
||||||
|
|
||||||
"title": lambda: None,
|
"title": lambda: None,
|
||||||
"unified_title": lambda: None,
|
"unified_title": lambda: None,
|
||||||
@ -252,8 +252,9 @@ class Album(Base):
|
|||||||
|
|
||||||
source_collection: SourceCollection
|
source_collection: SourceCollection
|
||||||
|
|
||||||
artist_collection: Collection[Artist]
|
|
||||||
song_collection: Collection[Song]
|
song_collection: Collection[Song]
|
||||||
|
artist_collection: Collection[Artist]
|
||||||
|
feature_artist_collection: Collection[Artist]
|
||||||
label_collection: Collection[Label]
|
label_collection: Collection[Label]
|
||||||
|
|
||||||
_default_factories = {
|
_default_factories = {
|
||||||
@ -269,9 +270,10 @@ class Album(Base):
|
|||||||
"notes": FormattedText,
|
"notes": FormattedText,
|
||||||
|
|
||||||
"source_collection": SourceCollection,
|
"source_collection": SourceCollection,
|
||||||
"artist_collection": Collection,
|
|
||||||
|
|
||||||
"song_collection": Collection,
|
"song_collection": Collection,
|
||||||
|
"artist_collection": Collection,
|
||||||
|
"feature_artist_collection": Collection,
|
||||||
"label_collection": Collection,
|
"label_collection": Collection,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user