Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move old classes to legacy | Roeland Jago Douma | 2016-05-01 | 1 | -336/+0 |
| | |||||
* | Update author information | Lukas Reschke | 2016-03-01 | 1 | -0/+1 |
| | | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :) | ||||
* | Use IDbConnectin::insertIfNotExist | Thomas Müller | 2016-01-14 | 1 | -2/+1 |
| | |||||
* | Use insertIfNotExists() when creating a group | Joas Schilling | 2016-01-14 | 1 | -33/+5 |
| | |||||
* | Merge pull request #20018 from owncloud/cache_group_backend | Thomas Müller | 2016-01-13 | 1 | -29/+129 |
|\ | | | | | The group database backend should cache groups | ||||
| * | Properly close cursors | Roeland Jago Douma | 2016-01-12 | 1 | -6/+13 |
| | | |||||
| * | Cache if a group exists | Roeland Jago Douma | 2016-01-12 | 1 | -0/+1 |
| | | |||||
| * | Inject DBConnection | Roeland Jago Douma | 2016-01-12 | 1 | -24/+89 |
| | | | | | | | | | | * Use query builder * Minor unit tests additions | ||||
| * | The group database backend should cache groups | Roeland Jago Douma | 2016-01-12 | 1 | -12/+39 |
| | | | | | | | | | | | | | | | | | | This avoids duplicated queries like first checking the group_users db and then just doing a select on the group db. Those enries are linked (and should be using foreign keys!) This commit makes sure we cache those entries. If a user is part of N groups this saves N queries on webdav access | ||||
* | | Happy new year! | Thomas Müller | 2016-01-12 | 1 | -2/+2 |
|/ | |||||
* | Reduce the complexity of the search queries in the backends to a minimum | Joas Schilling | 2015-05-18 | 1 | -6/+27 |
| | |||||
* | Update license headers | Jenkins for ownCloud | 2015-03-26 | 1 | -13/+21 |
| | |||||
* | Revert "Updating license headers" | Morris Jobke | 2015-02-26 | 1 | -21/+33 |
| | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36. | ||||
* | Updating license headers | Jenkins for ownCloud | 2015-02-23 | 1 | -33/+21 |
| | |||||
* | Correctly namespace and autoload DatabaseException | Joas Schilling | 2014-11-27 | 1 | -1/+1 |
| | |||||
* | Merge pull request #11479 from owncloud/cleanup-group-admin-on-deleteGroup | Morris Jobke | 2014-11-13 | 1 | -0/+4 |
|\ | | | | | cleanup group admin(s) on deleteGroup | ||||
| * | cleanup group admin(s) on deleteGroup | michag86 | 2014-10-08 | 1 | -0/+4 |
| | | |||||
* | | fix for issue #10880 | michag86 | 2014-10-07 | 1 | -1/+1 |
|/ | |||||
* | Revert "fix for issue #10880" | Vincent Petry | 2014-10-07 | 1 | -1/+1 |
| | | | | This reverts commit 0df070a8e4f6718e3cd86aa4d5a5fc62c53f6eee. | ||||
* | fix for issue #10880 | michag86 | 2014-10-07 | 1 | -1/+1 |
| | |||||
* | retrieve local users, groups and group members in a sorted way | Arthur Schiwon | 2014-08-29 | 1 | -2/+2 |
| | |||||
* | Merge pull request #10144 from owncloud/issue/9972 | Thomas Müller | 2014-08-06 | 1 | -1/+1 |
|\ | | | | | Issue/9972 Fix issues with group and username `0` | ||||
| * | Fix getting group '0' from database backend | Joas Schilling | 2014-08-04 | 1 | -1/+1 |
| | | | | | | | | Fix #9972 | ||||
* | | return int, not string | Arthur Schiwon | 2014-06-24 | 1 | -1/+5 |
| | | |||||
* | | search term for users and groups may occur anywhere in the name or ↵ | Arthur Schiwon | 2014-06-23 | 1 | -3/+3 |
|/ | | | | displayname, not just in the beginning | ||||
* | Remove all occurences of @brief and @returns from PHPDoc | Morris Jobke | 2014-05-19 | 1 | -9/+9 |
| | | | | * test case added to avoid adding them later | ||||
* | Fix PHPDoc and typos | Lukas Reschke | 2014-05-13 | 1 | -2/+1 |
| | | | | | | | | | | | | | Some things my IDE complained about while creating a custom backend. Fix PHPDoc and typos Some things my IDE complained about while creating a custom backend. Conflicts: lib/private/group/database.php lib/private/group/dummy.php lib/private/group/example.php | ||||
* | Squash 'a | b' into 'a|b', in /lib | Robin McCorkell | 2014-05-13 | 1 | -1/+1 |
| | |||||
* | Fix @return array PHPDocs, in /lib | Robin McCorkell | 2014-05-13 | 1 | -3/+3 |
| | |||||
* | Group Database backend must not gather user details itself but ask user | Arthur Schiwon | 2014-04-28 | 1 | -25/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | backends. This is a port to master from PR #7745 remove OC_GROUP_BACKEND_GET_DISPLAYNAME option for group backends Conflicts: lib/private/group/backend.php LDAP: getDisplayNamesInGroup is not an option for group backends anymore Conflicts: apps/user_ldap/group_ldap.php apps/user_ldap/group_proxy.php clean up group backends Conflicts: lib/private/group/database.php remove now unnecessary test implement getDisplayNames in group manager adjust user manager tests test for group manager's displayNamesInGroup trim must not be used in empty in PHP < 5.5 keep the constant to not provoke PHP warnings Conflicts: lib/private/group/backend.php | ||||
* | add optional countUsersInGroup method to group backends | Arthur Schiwon | 2014-04-08 | 1 | -0/+14 |
| | |||||
* | move the private namespace OC into lib/private - OCP will stay in lib/public | Thomas Müller | 2013-09-30 | 1 | -0/+239 |
Conflicts: lib/private/vcategories.php |