aboutsummaryrefslogtreecommitdiffstats
path: root/core/Controller/AppPasswordController.php
Commit message (Collapse)AuthorAgeFilesLines
* refactor(core): Switch to attribute based routingprovokateurin2024-02-211-0/+5
| | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* feat(core): Add OCS endpoint for confirming the user passwordprovokateurin2024-02-201-0/+36
| | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* Always catch OCP versions of authentication exceptionsCôme Chilliet2024-01-111-1/+1
| | | | | | And always throw OC versions for BC Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* fix(core): Add password confirmation requirement for getapppasswordJoas Schilling2023-07-171-0/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* core: Add OpenAPI specjld31032023-07-131-1/+22
| | | | Signed-off-by: jld3103 <jld3103yt@gmail.com>
* Update core/Controller/AppPasswordController.phpFaraz Samapoor2023-06-051-5/+6
| | | | Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
* Update core/Controller/AppPasswordController.phpFaraz Samapoor2023-06-051-2/+3
| | | | Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
* Refactors controllers by using PHP8's constructor property promotion.Faraz Samapoor2023-06-041-17/+5
| | | | Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
* Update core to PHP 7.4 standardCarl Schwan2022-05-201-19/+6
| | | | | | | - Typed properties - Port to LoggerInterface Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Remove old shorteningJoas Schilling2022-03-231-3/+0
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Limit the length of app password namesJoas Schilling2022-03-231-0/+3
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-041-2/+2
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Move app_password_created to a typed eventChristoph Wurst2021-02-091-6/+7
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-051-1/+4
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Allow rotation of apppasswordsRoeland Jago Douma2019-08-271-0/+24
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Allow clients to delete their own apptokenRoeland Jago Douma2019-05-171-0/+23
| | | | | | Fixes #15480 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Emit event if app password createdDaniel Kesselberg2019-02-181-28/+9
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Publish activity for app token created by ocs apiDaniel Kesselberg2019-02-171-2/+31
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Add an endppoint for clients to request an app passwordRoeland Jago Douma2018-10-031-0/+108
Now that we allow enforcing 2 factor auth it make sense if we also allow and endpoint where the clients can in the background fetch an apppassword if they were configured before the login flow was present. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>