add downloaded quality column to movie editor (#738)

This commit is contained in:
zductiv 2017-02-13 21:25:37 +08:00 committed by Devin Buhl
parent 0d5d75d6ea
commit c5bb259555
1 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,7 @@ var Backgrid = require('backgrid');
var EmptyView = require('../Index/EmptyView');
var MoviesCollection = require('../MoviesCollection');
var MovieTitleCell = require('../../Cells/MovieTitleCell');
var DownloadedQualityCell = require('../../Cells/DownloadedQualityCell');
var ProfileCell = require('../../Cells/ProfileCell');
var SelectAllCell = require('../../Cells/SelectAllCell');
var ToolbarLayout = require('../../Shared/Toolbar/ToolbarLayout');
@ -43,6 +44,11 @@ module.exports = Marionette.Layout.extend({
cell : MovieTitleCell,
cellValue : 'this'
},
{
name: "downloadedQuality",
label: "Downloaded",
cell: DownloadedQualityCell,
},
{
name : 'profileId',
label : 'Profile',