1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-21 01:49:57 +02:00
Sonarr/UI/Settings/Naming/NamingModel.js

11 lines
263 B
JavaScript
Raw Normal View History

2013-04-25 07:27:49 +03:00
"use strict";
2013-06-14 02:19:24 +03:00
define(['app',
2013-06-19 04:02:23 +03:00
'Mixins/AsChangeTrackingModel'], function (App, AsChangeTrackingModel) {
var model = Backbone.Model.extend({
url: App.Constants.ApiRoot + '/config/naming'
2013-04-25 07:27:49 +03:00
});
2013-06-14 02:19:24 +03:00
2013-06-19 04:02:23 +03:00
return AsChangeTrackingModel.call(model);
2013-04-25 07:27:49 +03:00
});