From 4f23d5ebae1600a7acd00a2dcb274f987d7fdd65 Mon Sep 17 00:00:00 2001 From: emeric Date: Mon, 29 Sep 2014 21:16:54 +0200 Subject: [PATCH] Adding filters, to be implemented --- remote/proto/collection.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/remote/proto/collection.proto b/remote/proto/collection.proto index c4c86957..df39ef1c 100644 --- a/remote/proto/collection.proto +++ b/remote/proto/collection.proto @@ -24,8 +24,8 @@ message AudioCollectionRequest message GetArtistList { required BatchParameter batch_parameter = 1; - -// repeated uint64 genre_id = 2; // Artist that has at least a track of the genre + // Search filters + repeated uint64 genre_id = 2; // Artist that has at least a track of the genre } message GetReleaseList @@ -33,7 +33,7 @@ message AudioCollectionRequest required BatchParameter batch_parameter = 1; // Search filters repeated uint64 artist_id = 2; // Release that contains at least a track of one of these artists -// repeated uint64 genre_id = 3; // Release that has at least a track of the genre + repeated uint64 genre_id = 3; // Release that has at least a track of the genre } message GetTrackList