mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-20 21:27:16 +00:00
10 lines
263 B
JavaScript
10 lines
263 B
JavaScript
"use strict";
|
|
define(['app',
|
|
'Mixins/AsChangeTrackingModel'], function (App, AsChangeTrackingModel) {
|
|
var model = Backbone.Model.extend({
|
|
url: App.Constants.ApiRoot + '/config/naming'
|
|
});
|
|
|
|
return AsChangeTrackingModel.call(model);
|
|
|
|
});
|