Added a filter for the EqBeats archive.

This commit is contained in:
Peter Deltchev 2017-10-29 03:06:08 -07:00
parent 6aee13a500
commit 61ee103299

View file

@ -1,5 +1,5 @@
# Pony.fm - A community for pony fan music. # Pony.fm - A community for pony fan music.
# Copyright (C) 2015 Peter Deltchev # Copyright (C) 2015-2017 Peter Deltchev
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by # it under the terms of the GNU Affero General Public License as published by
@ -244,6 +244,7 @@ module.exports = angular.module('ponyfm').factory('tracks', [
name: 'archive' name: 'archive'
values: [ values: [
{title: 'None', query: '', isDefault: true, filter: ''} {title: 'None', query: '', isDefault: true, filter: ''}
{title: 'Equestrian Beats', query: 'eqbeats', isDefault: false, filter: 'archive=eqbeats'}
{title: 'MLP Music Archive', query: 'mlpma', isDefault: false, filter: 'archive=mlpma'} {title: 'MLP Music Archive', query: 'mlpma', isDefault: false, filter: 'archive=mlpma'}
{title: 'Ponify', query: 'ponify', isDefault: false, filter: 'archive=ponify'} {title: 'Ponify', query: 'ponify', isDefault: false, filter: 'archive=ponify'}
] ]