summaryrefslogtreecommitdiffstats
path: root/apps/sharebymail
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2020-07-292-0/+2
|
* Fix sharebymail testsRoeland Jago Douma2020-07-063-99/+13
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Cleanup share by mail a bitRoeland Jago Douma2020-07-067-107/+39
| | | | | | | | | | | | | | | | * Moved to ned IBootstrap * Register everything via the capabilities api (So clients can use it as well) - This applies to the enforcing passwords * Updated the sharing js code to use it * removed app.php * removed unused settings now * typehints * strict typing Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* [tx-robot] updated from transifexNextcloud bot2020-07-042-0/+16
|
* [tx-robot] updated from transifexNextcloud bot2020-07-032-0/+4
|
* Update share type constant usageJoas Schilling2020-06-242-15/+15
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* [tx-robot] updated from transifexNextcloud bot2020-06-202-0/+10
|
* [tx-robot] updated from transifexNextcloud bot2020-06-052-0/+4
|
* Fix creating a mail share with a passwordDaniel Calviño Sánchez2020-05-282-4/+104
| | | | | | | | | | When a mail share was created with a password the given password was not hashed, so it was not possible to open the share with that password. Moreover, if passwords were enforced the given password was ignored and a new one was set (although in this case it was hashed so it worked as expected). Now the given password is properly hashed and not overriden. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* Extend mail shares unit tests to check the password and mail templateDaniel Calviño Sánchez2020-05-281-2/+23
| | | | Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
* [tx-robot] updated from transifexNextcloud bot2020-05-242-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2020-05-232-0/+4
|
* [tx-robot] updated from transifexNextcloud bot2020-05-222-2/+2
|
* [tx-robot] updated from transifexv19.0.0RC2Nextcloud bot2020-05-142-2/+2
|
* Bump app versions and requirementsJoas Schilling2020-05-071-2/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* [tx-robot] updated from transifexNextcloud bot2020-04-302-0/+14
|
* Update license headers for 19Christoph Wurst2020-04-293-0/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* [tx-robot] updated from transifexNextcloud bot2020-04-272-0/+22
|
* [tx-robot] updated from transifexNextcloud bot2020-04-132-12/+12
|
* Merge pull request #20426 from nextcloud/techdebt/psr2John Molakvoæ2020-04-111-6/+6
|\ | | | | It is done
| * Add visibility to all constantsChristoph Wurst2020-04-101-6/+6
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | [tx-robot] updated from transifexNextcloud bot2020-04-112-2/+2
|/
* Format control structures, classes, methods and functionChristoph Wurst2020-04-108-40/+14
| | | | | | | | | | | | | | | 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>
* Use elseif instead of else ifChristoph Wurst2020-04-101-10/+10
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Remove trailing and in between spacesChristoph Wurst2020-04-091-2/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Unify function spacing to PSR2 recommendationChristoph Wurst2020-04-091-2/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use exactly one empty line after the namespace declarationChristoph Wurst2020-04-096-6/+0
| | | | | | For PSR2 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Fix (array) indent style to always use one tabChristoph Wurst2020-04-092-17/+17
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update the license headers for Nextcloud 19Christoph Wurst2020-03-313-0/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use the short array syntax, everywhereChristoph Wurst2020-03-262-3/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use the shorter phpunit syntax for mocked return valuesChristoph Wurst2020-03-251-2/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update autoloaders for composer v1.10.1Christoph Wurst2020-03-191-0/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* [tx-robot] updated from transifexNextcloud bot2020-03-172-0/+10
|
* properly set 'hide_download' as integerRobin Appelman2020-03-131-2/+2
| | | | | | | | the database field is a smallint, not a boolean. fixes postgresql tests Signed-off-by: Robin Appelman <robin@icewind.nl>
* Properly respect hide download on sharebymailRoeland Jago Douma2020-03-132-9/+17
| | | | | | fixes #19484 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2020-03-122-2/+4
|
* [tx-robot] updated from transifexNextcloud bot2020-02-282-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2020-02-082-0/+24
|
* [tx-robot] updated from transifexNextcloud bot2020-02-0750-100/+50
|
* [tx-robot] updated from transifexNextcloud bot2020-02-012-2/+2
|
* [tx-robot] updated from transifexNextcloud bot2020-01-312-2/+0
|
* [tx-robot] updated from transifexNextcloud bot2020-01-292-0/+8
|
* [tx-robot] updated from transifexNextcloud bot2020-01-272-16/+16
|
* [tx-robot] updated from transifexNextcloud bot2020-01-252-0/+4
|
* Fix app updatesRoeland Jago Douma2020-01-211-2/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* [tx-robot] updated from transifexNextcloud bot2020-01-162-2/+36
|
* [tx-robot] updated from transifexNextcloud bot2020-01-152-0/+72
|
* Fix license headersChristoph Wurst2020-01-131-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* additional fix to #18730 #18733exner1042020-01-081-0/+8
| | | regarding to advice from @kesselb
* Wrong email sender fix #18730exner1042020-01-081-3/+1
| | | Wrong email sender in app sharebymail when sending password to owner fix #18730