nextcloud/settings/ajax/openid.php

20 lines
455 B
PHP

<?php
// Init owncloud
require_once('../../lib/base.php');
$l=new OC_L10N('settings');
OC_JSON::checkLoggedIn();
// Get data
if( isset( $_POST['identity'] ) ){
$identity=$_POST['identity'];
OC_Preferences::setValue(OC_User::getUser(),'user_openid','identity',$identity);
OC_JSON::success(array("data" => array( "message" => $l->t("OpenID Changed") )));
}else{
OC_JSON::error(array("data" => array( "message" => $l->t("Invalid request") )));
}
?>