summaryrefslogtreecommitdiffstats
path: root/core/avatar/avatarcontroller.php
Commit message (Collapse)AuthorAgeFilesLines
* move avatar controller to core/controllerMorris Jobke2016-01-201-327/+0
|
* Happy new year!Thomas Müller2016-01-121-1/+1
|
* Verify the path is a file on avatar updateRoeland Jago Douma2016-01-081-0/+3
| | | | | | | | Fixes #21533 Before we just assumed that the passed path was a file. This does not have to be the case. Thus check if it actually is a file before doing any more tests.
* [Avatar] Make the avatar controller use the avatar nodeRoeland Jago Douma2015-12-161-10/+14
|
* Update license headersLukas Reschke2015-10-261-1/+2
|
* Do not print exception messageLukas Reschke2015-10-131-12/+15
| | | | | | In case of an error the error message often contains sensitive data such as the full path which potentially leads to a full path disclosure. Thus the error message should not directly get displayed to the user and instead be logged.
* Use injected requestVincent Petry2015-10-091-1/+1
|
* fix IE8 user agent detectionMorris Jobke2015-10-091-1/+1
|
* Fix uploading avatar and root certs in IE8Vincent Petry2015-10-091-12/+46
|
* update licence headers via scriptMorris Jobke2015-10-051-0/+1
|
* Revert "Allow Remote avatars"Thomas Müller2015-09-151-5/+1
|
* Allow remote avatarsRoeland Jago Douma2015-08-291-1/+5
|
* Remove requesttoken for avatarsLukas Reschke2015-08-231-0/+1
| | | | First step for https://github.com/owncloud/core/issues/11915
* Move avatarcontroller towards Node ApiRoeland Jago Douma2015-08-181-7/+13
|
* [avatar] add error handlers for avatar setupMorris Jobke2015-07-301-0/+8
| | | | | | | | | | | | add colon to translated string use placeholder in t() Adding a size limitation for avatar upload Unit test for file size Fix typo & display server side error message
* update license headers and authorsMorris Jobke2015-06-251-0/+2
|
* Correc type annotationLukas Reschke2015-06-171-3/+3
|
* Add `no-store` to AppFrameworkLukas Reschke2015-06-151-2/+1
|
* Update license headersJenkins for ownCloud2015-03-261-0/+2
|
* Merge pull request #15048 from owncloud/avatar-crop-squareMorris Jobke2015-03-241-1/+1
|\ | | | | round width and height when cropping avatar
| * round width and height when cropping avatarRobin Appelman2015-03-201-1/+1
| |
* | Create an interface for OC_Image and OCP\Image for the public APIJoas Schilling2015-03-161-1/+1
|/
* Fix getting the avatar of a non-existing userJoas Schilling2015-03-131-5/+7
|
* Avatar controller moved to AppFrameWorkRoeland Jago Douma2015-03-111-0/+261
* Original avatarcontroller migrated to the appframework * Added DataDisplayResponse that show data inline in the browser (used to retrun the image) * Removed some unneeded code * Added unit tests for the avatarcontroller