mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 17:43:49 -07:00
Using messenger for notifications on series add
This commit is contained in:
parent
42fb4fcaa4
commit
c039aedbb9
2 changed files with 6 additions and 17 deletions
|
@ -1,5 +1,5 @@
|
|||
'use strict';
|
||||
define(['app', 'Shared/NotificationCollection', 'Series/SeriesCollection'], function (app, notificationCollection) {
|
||||
define(['app', 'Series/SeriesCollection'], function (app) {
|
||||
|
||||
NzbDrone.AddSeries.New.SearchItemView = Backbone.Marionette.ItemView.extend({
|
||||
|
||||
|
@ -32,13 +32,10 @@ define(['app', 'Shared/NotificationCollection', 'Series/SeriesCollection'], func
|
|||
this.model.save(undefined, {
|
||||
url : NzbDrone.Series.SeriesCollection.prototype.url,
|
||||
success: function () {
|
||||
var notificationModel = new NzbDrone.Shared.NotificationModel({
|
||||
title : 'Added',
|
||||
message: self.model.get('title'),
|
||||
level : 'success'
|
||||
NzbDrone.Shared.Messenger.show({
|
||||
message: 'Added: ' + self.model.get('title')
|
||||
});
|
||||
|
||||
notificationCollection.push(notificationModel);
|
||||
NzbDrone.vent.trigger(NzbDrone.Events.SeriesAdded, { existing: false, series: self.model });
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue