add downloaded quality column to movie editor (#738)

pull/744/head
zductiv 8 years ago committed by Devin Buhl
parent 0d5d75d6ea
commit c5bb259555

@ -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',

Loading…
Cancel
Save