Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-12-15 14:43:42 +0300
committerMorris Jobke <hey@morrisjobke.de>2014-12-19 00:43:09 +0300
commit5913af8a72e384f8fee89501b3a297b70460c1e0 (patch)
tree7f329b47b84bc312952d66f8f86f3f7e66ae9476 /settings/ajax
parent5327b8043019ec8f0cfe19d70794978570bba4bc (diff)
Mail address of users is now changable in the user management
* introduced new route settings/users/{id}/mailAddress * kept old responses * better error messages * dropped lostpassword.php from settings/ajax * cleaned up the UserList.add() and hand in user object instead of each attribute as another parameter * check for change permission of mail address * proper response messages
Diffstat (limited to 'settings/ajax')
-rw-r--r--settings/ajax/lostpassword.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/settings/ajax/lostpassword.php b/settings/ajax/lostpassword.php
deleted file mode 100644
index b0fb20c4a7e..00000000000
--- a/settings/ajax/lostpassword.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php
-
-OC_JSON::checkLoggedIn();
-OCP\JSON::callCheck();
-
-$l = \OC::$server->getL10N('settings');
-
-// Get data
-if( isset( $_POST['email'] ) && OC_Mail::validateAddress($_POST['email']) ) {
- $email=trim($_POST['email']);
- \OC::$server->getConfig()->setUserValue(OC_User::getUser(), 'settings', 'email', $email);
- OC_JSON::success(array("data" => array( "message" => $l->t("Email saved") )));
-}else{
- OC_JSON::error(array("data" => array( "message" => $l->t("Invalid email") )));
-}