webdav portal password reset added
This commit is contained in:
parent
4bae47e17f
commit
599e9a8865
48 changed files with 1163 additions and 117 deletions
|
@ -26,6 +26,7 @@
|
|||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
|
@ -47,6 +48,24 @@ namespace WebsitePanel.EnterpriseServer
|
|||
{
|
||||
#region Organizations
|
||||
|
||||
[WebMethod]
|
||||
public void DeletePasswordresetAccessToken(Guid accessToken)
|
||||
{
|
||||
OrganizationController.DeleteAccessToken(accessToken, AccessTokenTypes.PasswrodReset);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public void SetAccessTokenResponse(Guid accessToken, string response)
|
||||
{
|
||||
OrganizationController.SetAccessTokenResponse(accessToken, response);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public AccessToken GetPasswordresetAccessToken(Guid token)
|
||||
{
|
||||
return OrganizationController.GetAccessToken(token, AccessTokenTypes.PasswrodReset);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public void UpdateOrganizationGeneralSettings(int itemId, OrganizationGeneralSettings settings)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue