mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-16 16:04:08 +01:00
24 lines
412 B
JavaScript
24 lines
412 B
JavaScript
/// <reference path="../app.js" />
|
|
|
|
NzbDrone.Shared.ErrorCollection = Backbone.Collection.extend({
|
|
|
|
model: NzbDrone.Shared.ErrorModel,
|
|
|
|
});
|
|
|
|
|
|
NzbDrone.Shared.ErrorModel = Backbone.Model.extend({
|
|
|
|
mutators: {
|
|
pre: function () {
|
|
return this.get('message').lines().lenght > 1;
|
|
}
|
|
},
|
|
|
|
|
|
defaults: {
|
|
"title": "NO_TITLE",
|
|
"message": "NO_MESSAGE",
|
|
}
|
|
});
|