aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Group
Commit message (Collapse)AuthorAgeFilesLines
* Update the license headers for Nextcloud 20Christoph Wurst2020-08-241-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add proper deprecation messageMorris Jobke2020-08-071-1/+4
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Deprecate BeforeUserRemovedEvent because it can't be triggered in all casesMorris Jobke2020-07-301-0/+4
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-1010-10/+0
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Remove unused importsChristoph Wurst2020-03-251-1/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headers for 18Christoph Wurst2019-12-208-16/+24
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add typed events for all group hooks and legacy eventsChristoph Wurst2019-12-118-0/+492
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-0513-15/+47
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Allow to set the group display name in the database backendJoas Schilling2019-09-271-0/+38
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Add a displayname to the database group backendJoas Schilling2019-09-271-0/+3
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* group display name support (service level + ldap)Arthur Schiwon2019-05-271-0/+36
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* allow group backends to mark that a group should now be shown in search dialogsRobin Appelman2019-02-251-0/+38
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Expose subadmin to OCPRoeland Jago Douma2019-01-291-0/+99
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Added disabled count per groupsJohn Molakvoæ (skjnldsv)2018-05-241-0/+36
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Make the group backends also possible using interfacesRoeland Jago Douma2018-04-238-0/+319
Just like for the user backends the group backends should also be properly done using interfaces. This adds the interfaces and abstract class to get started Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>