Merge branch 'master' into feature/files

This commit is contained in:
pavelbannov 2020-08-27 18:06:05 +03:00
commit 17c4cf02fc
2 changed files with 62 additions and 4 deletions

View File

@ -0,0 +1,34 @@
/*
*
* (c) Copyright Ascensio System Limited 2010-2018
*
* This program is freeware. You can redistribute it and/or modify it under the terms of the GNU
* General Public License (GPL) version 3 as published by the Free Software Foundation (https://www.gnu.org/copyleft/gpl.html).
* In accordance with Section 7(a) of the GNU GPL its Section 15 shall be amended to the effect that
* Ascensio System SIA expressly excludes the warranty of non-infringement of any third-party rights.
*
* THIS PROGRAM IS DISTRIBUTED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR
* FITNESS FOR A PARTICULAR PURPOSE. For more details, see GNU GPL at https://www.gnu.org/copyleft/gpl.html
*
* You can contact Ascensio System SIA by email at sales@onlyoffice.com
*
* The interactive user interfaces in modified source and object code versions of ONLYOFFICE must display
* Appropriate Legal Notices, as required under Section 5 of the GNU GPL version 3.
*
* Pursuant to Section 7 § 3(b) of the GNU GPL you must retain the original ONLYOFFICE logo which contains
* relevant author attributions when distributing the software. If the display of the logo in its graphic
* form is not reasonably feasible for technical reasons, you must include the words "Powered by ONLYOFFICE"
* in every copy of the program you distribute.
* Pursuant to Section 7 § 3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
namespace ASC.Files.Core.Model
{
public class SettingsModel
{
public bool Set { get; set; }
}
}

View File

@ -1382,9 +1382,9 @@ namespace ASC.Api.Documents
/// <param name="set"></param> /// <param name="set"></param>
/// <returns></returns> /// <returns></returns>
[Update(@"storeoriginal")] [Update(@"storeoriginal")]
public bool StoreOriginal(bool set) public bool StoreOriginal(SettingsModel model)
{ {
return FileStorageService.StoreOriginal(set); return FileStorageService.StoreOriginal(model.Set);
} }
/// <summary> /// <summary>
@ -1396,18 +1396,42 @@ namespace ASC.Api.Documents
[Update(@"hideconfirmconvert")] [Update(@"hideconfirmconvert")]
public bool HideConfirmConvert(bool save) public bool HideConfirmConvert(bool save)
{ {
return FileStorageService.HideConfirmConvert(save); return FileStorageService.HideConfirmConvert(save);
} }
/// <summary> /// <summary>
/// ///
/// </summary> /// </summary>
/// <param name="set"></param> /// <param name="set"></param>
/// <returns></returns> /// <returns></returns>
[Update(@"updateifexist")] [Update(@"updateifexist")]
public bool UpdateIfExist(bool set) public bool UpdateIfExist(SettingsModel model)
{ {
return FileStorageService.UpdateIfExist(set); return FileStorageService.UpdateIfExist(model.Set);
}
/// <summary>
///
/// </summary>
/// <param name="set"></param>
/// <returns></returns>
[Update(@"changedeleteconfrim")]
public bool ChangeDeleteConfrim(SettingsModel model)
{
return FileStorageService.HideConfirmConvert(model.Set);
}
/// <summary>
///
/// </summary>
/// <param name="set"></param>
/// <returns></returns>
[Update(@"storeforcesave")]
public bool StoreForcesave(SettingsModel model)
{
return FileStorageService.StoreForcesave(model.Set);
} }
/// <summary> /// <summary>