summaryrefslogtreecommitdiffstats
path: root/core/routes.php
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-08-28 16:39:00 +0200
committerkondou <kondou@ts.unde.re>2013-08-28 16:39:00 +0200
commit8d8a57de7fb41030ffb69f098419616f4003119a (patch)
tree7027a8c0f0f05b9b00eac204f82d941bc610acc6 /core/routes.php
parent1b456831680b8868108afb7ebddce7095943f61c (diff)
downloadnextcloud-server-8d8a57de7fb41030ffb69f098419616f4003119a.tar.gz
nextcloud-server-8d8a57de7fb41030ffb69f098419616f4003119a.zip
Continue work on cropper
Diffstat (limited to 'core/routes.php')
-rw-r--r--core/routes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/routes.php b/core/routes.php
index 30c4bf544d7..25f64a18830 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -68,7 +68,7 @@ $this->create('core_avatar_post', '/avatar/')
$this->create('core_avatar_delete', '/avatar/')
->delete()
->action('OC_Core_Avatar_Controller', 'deleteAvatar');
-$this->create('core_avatar_get_tmp', '/avatar/tmp/{size}')
+$this->create('core_avatar_get_tmp', '/avatartmp/{size}') //TODO better naming, so it doesn't conflict with core_avatar_get
->defaults(array('size' => 64))
->get()
->action('OC_Core_Avatar_Controller', 'getTmpAvatar');