aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Support
Commit message (Collapse)AuthorAgeFilesLines
* composer run cs:fixCôme Chilliet2023-01-207-7/+0
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* perf(logging): Return early when log level does not match before serializing ↵Julius Härtl2023-01-161-0/+9
| | | | | | an exception Signed-off-by: Julius Härtl <jus@bitgrid.net>
* LDAP to no register new users when outside of fair use or over limitsArthur Schiwon2022-10-181-0/+44
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Fair use of push notificationsJoas Schilling2021-10-231-1/+3
| | | | | | | | | We want to keep offering our push notification service for free, but large users overload our infrastructure. For this reason we have to rate-limit the use of push notifications. If you need this feature, consider setting up your own push server or using Nextcloud Enterprise. Signed-off-by: Joas Schilling <coding@schilljs.com>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-048-23/+15
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Allow subscription to indicate that a userlimit is reachedMorris Jobke2020-12-022-0/+14
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Update the license headers for Nextcloud 20Christoph Wurst2020-08-241-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Make the subscription registry lazyRoeland Jago Douma2020-07-091-2/+14
| | | | | | | This will allow to do lazy registration here which should allow for loading less (or at least only when needed!). Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Allow crash reporters registration during app bootstrapChristoph Wurst2020-06-192-0/+10
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-102-2/+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>
* Update license headersChristoph Wurst2019-12-058-10/+30
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add extendedSupport to SubscriptionJulius Härtl2019-06-172-0/+14
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Add interfaces to interact with subscription from support appMorris Jobke2019-05-134-0/+161
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Allow crash reporters to catpture any messageChristoph Wurst2019-05-092-4/+63
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Fix @since version on new APIChristoph Wurst2018-09-051-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add breadcrumb support to crash reportersChristoph Wurst2018-09-052-0/+54
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Pass the exception context to the crash reporterChristoph Wurst2017-11-142-2/+4
| | | | | | | | This should allow better reports as often the app id is passed as context. While this is not used right now, I'd like to have this for NC13 as adding it later will break the interface for existing apps Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add a mechanism to register crach reportersChristoph Wurst2017-11-142-0/+88
This adds a crash reporter registry, which is meant for third party apps to hook into the error logging/reporting chain. This way, external tools like Sentry can be used to track and aggregate system crashes. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>