summaryrefslogtreecommitdiffstats
path: root/settings/templates/oauth.php
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-02-27 23:26:00 +0100
committerLukas Reschke <lukas@statuscode.ch>2013-02-27 23:26:00 +0100
commit7311c2bb5d724c7c5e3c5ade6b26e3358597a04e (patch)
tree9ee940fb50210901cdc3e135a405fc5ecc676914 /settings/templates/oauth.php
parent39e28c0170382a780d1f28577205d260e9053bc3 (diff)
downloadnextcloud-server-7311c2bb5d724c7c5e3c5ade6b26e3358597a04e.tar.gz
nextcloud-server-7311c2bb5d724c7c5e3c5ade6b26e3358597a04e.zip
Remove uneeded OAuth files
Diffstat (limited to 'settings/templates/oauth.php')
-rw-r--r--settings/templates/oauth.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/settings/templates/oauth.php b/settings/templates/oauth.php
deleted file mode 100644
index 34831ba0284..00000000000
--- a/settings/templates/oauth.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-/**
- * Copyright (c) 2012, Tom Needham <tom@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or later.
- * See the COPYING-README file.
- */
-?>
-<div id="oauth-request" class="guest-container">
- <p><strong><?php p($_['consumer']['name']); ?></strong> is requesting your permission to read, write, modify and delete data from the following apps:</p>
- <ul>
- <?php
- // Foreach requested scope
- foreach($_['consumer']['scopes'] as $app){
- print_unescaped('<li>'.OC_Util:sanitzeHTML($app).'</li>)';
- }
- ?>
- </ul>
- <a href="#" class="button">Allow</a>
- <a href="#" class="button">Disallow</a>
-</div>