Move to apps repo

This belongs to the apps repo.
This commit is contained in:
Lukas Reschke 2013-01-11 17:22:15 +01:00
parent 1eb3c8ecf6
commit 1631ee4d60

View file

@ -1,16 +0,0 @@
<?php
$l=OC_L10N::get('settings');
OC_JSON::checkLoggedIn();
OCP\JSON::callCheck();
OC_JSON::checkAppEnabled('user_openid');
// 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") )));
}