1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-29 03:05:49 +00: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 03:26:07 +00:00
successMessage: 'MediaManagement settings saved',
errorMessage : 'Couldn\'t save naming settings'
});
2013-06-13 23:19:24 +00:00
});