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

13 lines
343 B
JavaScript
Raw Normal View History

'use strict';
define(
[
'Settings/SettingsModelBase'
], function (ModelBase) {
return ModelBase.extend({
url : window.ApiRoot + '/config/naming',
2013-07-05 06:26:07 +03:00
successMessage: 'MediaManagement settings saved',
errorMessage : 'Couldn\'t save naming settings'
});
2013-06-14 02:19:24 +03:00
});