1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Added: Monitor Toggle on Movies Editor Page (#2887)

#610
This commit is contained in:
Qstick 2018-07-14 14:24:16 -04:00 committed by Tim Turner
parent 0db74fa583
commit fe7bf8ec9e

View File

@ -6,6 +6,7 @@ var EmptyView = require('../Index/EmptyView');
var FullMovieCollection = require ('../FullMovieCollection');
var MoviesCollection = require('../MoviesCollection');
var MovieTitleCell = require('../../Cells/MovieTitleCell');
var MovieMonitoredCell = require('../../Cells/ToggleCell');
var DownloadedQualityCell = require('../../Cells/DownloadedQualityCell');
var ProfileCell = require('../../Cells/ProfileCell');
var SelectAllCell = require('../../Cells/SelectAllCell');
@ -46,6 +47,15 @@ module.exports = Marionette.Layout.extend({
headerCell : 'select-all',
sortable : false
},
{
name : 'monitored',
label : '',
cell : MovieMonitoredCell,
trueClass : 'icon-sonarr-monitored',
falseClass : 'icon-sonarr-unmonitored',
tooltip : 'Toggle movie monitored status',
sortable : false
},
{
name : 'title',
label : 'Title',