summaryrefslogtreecommitdiffstats
path: root/lib/private/user
Commit message (Collapse)AuthorAgeFilesLines
* Update author informationLukas Reschke2016-03-014-6/+3
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Fix typo in PHPDocMorris Jobke2016-02-141-1/+1
|
* Always set up a config object within the user objectMorris Jobke2016-02-121-15/+10
| | | | * the new getEmailAddress and setEmailAddress relies on this anyway
* revolutionar: change updates might even sent the new value (optional)Arthur Schiwon2016-02-091-5/+5
|
* Doc improvementsArthur Schiwon2016-02-091-2/+2
|
* Consolidate getQuota and setQuota methods in User instanceArthur Schiwon2016-02-091-4/+35
|
* Merge pull request #22110 from owncloud/comment-types-always-pluralThomas Müller2016-02-041-1/+1
|\ | | | | types shall always be plural
| * types shall always be pluralArthur Schiwon2016-02-031-1/+1
| |
* | move whitspace check to user managerVincent Chan2016-02-031-0/+4
|/
* introduce comments read marke tables, comes with user cleanup after deletionArthur Schiwon2016-01-291-0/+1
|
* Changing the avatar of the user emits the changeUser event which triggers ↵Thomas Müller2016-01-251-6/+8
| | | | update of the system addressbook
* Merge pull request #21806 from owncloud/mdusher-masterThomas Müller2016-01-251-3/+3
|\ | | | | [jenkins] Added ' to characters allowed in the username
| * fix error message and commentMorris Jobke2016-01-201-2/+2
| |
| * Added ' to characters allowed in the usernameMichael U2016-01-201-2/+2
| |
* | Emit OC\User::changeUser on change of display nameThomas Müller2016-01-201-1/+6
| |
* | Introduce IUser::setEMailAddress and add hook mechanismThomas Müller2016-01-202-0/+20
|/
* move methods to correct interface, deprecate private interfaceJörn Friedrich Dreyer2016-01-143-62/+9
|
* Happy new year!Thomas Müller2016-01-128-13/+15
|
* getMediumStrengthGenerator is deprecated and does not do anything anymoreRoeland Jago Douma2016-01-111-1/+1
|
* Remove OC_DB::isErrorMorris Jobke2016-01-071-2/+2
|
* Move regeneration of session ID into session classesLukas Reschke2016-01-041-0/+2
| | | | There were code paths that nowadays call ISession::login directly thus bypassing the desired regeneration of the session ID. This moves the session regeneration deeper into the session handling and thus ensures that it is always called. Furthermore, I also added the session regeneration to the remember me cookie plus added some test case expectations for this.
* different strategy in cleaning up after user was deletedArthur Schiwon2015-12-091-0/+2
| | | | | | | | we do not listen to deletion hooks anymore, because there is no guarantee that they will be heard - requires that something fetches the CommentsManager first. Instead, in the user deletion routine the clean up method will be called directly. Same way as it happens for files, group memberships, config values.
* More cleanups of OC_Config usageMorris Jobke2015-12-032-2/+2
|
* User IUser::getEMailAddress() all over the placeThomas Müller2015-12-021-1/+1
|
* Fix endless recursionThomas Müller2015-12-021-7/+9
|
* Fix commentsThomas Müller2015-12-021-1/+1
|
* Fix getCloudIdThomas Müller2015-12-021-0/+1
|
* Proposal: add enumeration function to IUserManager which simply calls a ↵Thomas Müller2015-12-021-4/+30
| | | | callbask for each user in all backends
* Add the user's cloud id to the vCardThomas Müller2015-12-021-25/+42
|
* Add IUser::getAvatarImage() for easy accessThomas Müller2015-12-021-1/+27
|
* Introduce \OCP\IUser::getEMailAddress()Thomas Müller2015-11-251-0/+10
|
* Make sure that remote shares use the correct uid casingJoas Schilling2015-10-061-0/+32
|
* update licence headers via scriptMorris Jobke2015-10-054-3/+3
|
* Move dummy backend to Tests namespaceLukas Reschke2015-09-221-169/+0
|
* Remove last occurence of `forcessl`Lukas Reschke2015-08-261-2/+2
| | | | This shoudl have been adjusted as well, now it's consistent with `setMagicInCookie`. While it does not have a security impact directly some automated scanners reported this all the time.
* Fixed "Remote IP:" syntax on failed loginsRealRancor2015-07-091-1/+1
|
* Remove OC_LogThomas Müller2015-07-031-2/+2
|
* Fix indentationLukas Reschke2015-06-271-15/+15
|
* Add missing annotations for parametersLukas Reschke2015-06-274-26/+36
|
* update license headers and authorsMorris Jobke2015-06-252-5/+17
|
* more type hintsRobin Appelman2015-06-021-2/+2
|
* Reduce the complexity of the search queries in the backends to a minimumJoas Schilling2015-05-181-5/+20
|
* fix followup issues with unneeded parametersMorris Jobke2015-04-181-2/+2
|
* throw exception when backends don't provide a user instead of creating ↵Jörn Friedrich Dreyer2015-04-101-0/+14
| | | | legacy local storages
* Update license headersJenkins for ownCloud2015-03-268-73/+179
|
* Remove outdated commentLukas Reschke2015-03-131-2/+0
|
* Drop example user backendLukas Reschke2015-03-131-70/+0
| | | | | | We already provide an interface for application developers, this file is outdated and thus should get removed. Addresses No. 3 from https://github.com/owncloud/core/issues/14847
* Merge pull request #14867 from owncloud/drop-OC_User_HTTPMorris Jobke2015-03-131-120/+0
|\ | | | | Remove OC_User_HTTP
| * Remove OC_User_HTTPLukas Reschke2015-03-131-120/+0
| | | | | | | | Addresses No. 1 from https://github.com/owncloud/core/issues/14847
* | Can also be nullLukas Reschke2015-03-131-1/+1
|/ | | | If the user does not exist this returns null and can lead to nasty bugs since the IDE is not indicating this...