diff options
author | kondou <kondou@ts.unde.re> | 2013-08-28 16:39:00 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-08-28 16:39:00 +0200 |
commit | 8d8a57de7fb41030ffb69f098419616f4003119a (patch) | |
tree | 7027a8c0f0f05b9b00eac204f82d941bc610acc6 /core/routes.php | |
parent | 1b456831680b8868108afb7ebddce7095943f61c (diff) | |
download | nextcloud-server-8d8a57de7fb41030ffb69f098419616f4003119a.tar.gz nextcloud-server-8d8a57de7fb41030ffb69f098419616f4003119a.zip |
Continue work on cropper
Diffstat (limited to 'core/routes.php')
-rw-r--r-- | core/routes.php | 2 |
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'); |