summaryrefslogtreecommitdiffstats
path: root/settings/ajax/openid.php
blob: bf4ead06020b6c6eefdaf7c6152347821ab838ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

// Init owncloud
require_once('../../lib/base.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") )));
}