mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
13 lines
No EOL
281 B
JavaScript
13 lines
No EOL
281 B
JavaScript
var Backbone = require('backbone');
|
|
|
|
module.exports = Backbone.Model.extend({
|
|
url : function() {
|
|
return this.get('contentsUrl');
|
|
},
|
|
|
|
parse : function(contents) {
|
|
var response = {};
|
|
response.contents = contents;
|
|
return response;
|
|
}
|
|
}); |