mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07:00
12 lines
No EOL
280 B
JavaScript
12 lines
No EOL
280 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;
|
|
}
|
|
}); |