1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update delete smart match entry

This commit is contained in:
Luke Pulverenti 2016-02-13 01:19:28 -05:00
parent 0a7c782beb
commit e7448d6369
3 changed files with 13 additions and 23 deletions

View file

@ -1127,16 +1127,6 @@
});
};
self.performMovieOrganization = function (id, options) {
var url = self.getUrl("Library/FileOrganizations/" + id + "/Movie/Organize", options || {});
return self.ajax({
type: "POST",
url: url
});
};
self.getLiveTvSeriesTimer = function (id) {
if (!id) {
@ -3438,12 +3428,12 @@
});
};
self.deleteSmartMatchEntry = function (name, options) {
self.deleteSmartMatchEntries = function (entries) {
var url = self.getUrl("Library/FileOrganizations/SmartMatches", options || {});
var url = self.getUrl("Library/FileOrganizations/SmartMatches");
var postData = {
Name: name
Entries: entries
};
return self.ajax({