nextcloud/settings/ajax/openid.php

17 lines
466 B
PHP
Raw Normal View History

2011-08-05 18:05:58 +04:00
<?php
2012-04-14 18:44:15 +04:00
$l=OC_L10N::get('settings');
2011-08-05 18:05:58 +04:00
OC_JSON::checkLoggedIn();
2012-07-07 17:27:04 +04:00
OCP\JSON::callCheck();
OC_JSON::checkAppEnabled('user_openid');
2011-08-05 18:05:58 +04:00
// Get data
if( isset( $_POST['identity'] ) ) {
2011-08-05 18:05:58 +04:00
$identity=$_POST['identity'];
OC_Preferences::setValue(OC_User::getUser(), 'user_openid', 'identity', $identity);
OC_JSON::success(array("data" => array( "message" => $l->t("OpenID Changed") )));
2011-08-05 18:05:58 +04:00
}else{
OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") )));
2011-08-05 18:05:58 +04:00
}