]> source.dussan.org Git - nextcloud-server.git/commitdiff
Move to apps repo
authorLukas Reschke <lukas@statuscode.ch>
Fri, 11 Jan 2013 16:22:15 +0000 (17:22 +0100)
committerLukas Reschke <lukas@statuscode.ch>
Fri, 11 Jan 2013 16:22:15 +0000 (17:22 +0100)
This belongs to the apps repo.

settings/ajax/openid.php [deleted file]

diff --git a/settings/ajax/openid.php b/settings/ajax/openid.php
deleted file mode 100644 (file)
index 23c43c3..0000000
+++ /dev/null
@@ -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") )));
-}