Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Do not show empty admin sections | Roeland Jago Douma | 2017-04-19 | 1 | -0/+4 |
| | | | | | | | | | Fixes #4393 It is far from efficient code. But then again it is easy to understand and I doubt admins will browse it 24/7 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-19 | 2 | -0/+20 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-18 | 122 | -708/+636 |
| | |||||
* | Merge pull request #4369 from nextcloud/fix-translations | Morris Jobke | 2017-04-18 | 4 | -6/+6 |
|\ | | | | | Fix translations | ||||
| * | Fix translations | Joas Schilling | 2017-04-18 | 4 | -6/+6 |
| | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | | Beautify test email | Lukas Reschke | 2017-04-18 | 1 | -4/+12 |
| | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | | Merge pull request #4372 from nextcloud/smtp-password | Morris Jobke | 2017-04-18 | 3 | -75/+74 |
|\ \ | | | | | | | Don't put the SMTP password into the HTML code | ||||
| * | | Fix some more stuff | Joas Schilling | 2017-04-18 | 1 | -0/+1 |
| | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
| * | | Fix tests | Joas Schilling | 2017-04-18 | 1 | -5/+4 |
| | | | | | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
| * | | Don't put the SMTP password into the HTML code | Joas Schilling | 2017-04-18 | 3 | -74/+73 |
| |/ | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-18 | 4 | -4/+42 |
| | | |||||
* | | Add bruteforce protection to changePersonalPassword | Lukas Reschke | 2017-04-18 | 1 | -1/+4 |
|/ | | | | | | While the risk is actually quite low because one would already have the user session and could potentially do other havoc it makes sense to throttle here in case of invalid previous password attempts. Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-18 | 8 | -8/+90 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-17 | 4 | -4/+44 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-16 | 16 | -136/+414 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-15 | 2 | -0/+20 |
| | |||||
* | Merge pull request #4330 from nextcloud/activities-for-password-mail-change | Roeland Jago Douma | 2017-04-14 | 4 | -0/+480 |
|\ | | | | | Add activities when email or password is changed | ||||
| * | No need for those emails anymore | Joas Schilling | 2017-04-13 | 1 | -1/+1 |
| | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
| * | Send an email to the old address on email change | Joas Schilling | 2017-04-13 | 2 | -2/+29 |
| | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
| * | Move logic into new class with DI | Joas Schilling | 2017-04-13 | 2 | -80/+155 |
| | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
| * | Send an email on password change | Joas Schilling | 2017-04-13 | 1 | -4/+42 |
| | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
| * | Add activities when email or password is changed | Joas Schilling | 2017-04-13 | 3 | -0/+340 |
| | | | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-14 | 4 | -78/+106 |
| | | |||||
* | | Don't load handlebars in template | Lukas Reschke | 2017-04-13 | 1 | -1/+0 |
|/ | | | | | | It's already loaded in core.json Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-13 | 6 | -188/+204 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-12 | 6 | -0/+36 |
| | |||||
* | Adjust class references | Lukas Reschke | 2017-04-11 | 1 | -1/+1 |
| | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | Merge pull request #4256 from nextcloud/theming | Lukas Reschke | 2017-04-11 | 3 | -8/+9 |
|\ | | | | | Move OC_Defaults to OCP\Defaults | ||||
| * | Move OC_Defaults to OCP\Defaults | Morris Jobke | 2017-04-09 | 3 | -8/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | * currently there are two ways to access default values: OCP\Defaults or OC_Defaults (which is extended by OCA\Theming\ThemingDefaults) * our code used a mixture of both of them, which made it hard to work on theme values * this extended the public interface with the missing methods and uses them everywhere to only rely on the public interface Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-11 | 2 | -0/+16 |
| | | |||||
* | | Merge pull request #4250 from nextcloud/disable-lookupserver-upload | Björn Schießle | 2017-04-10 | 3 | -2/+13 |
|\ \ | | | | | | | allow admin to disable lookupserver upload | ||||
| * | | make sure that the selector for the visibility always fits next to 'Profile ↵ | Bjoern Schiessle | 2017-04-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | picture' Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org> | ||||
| * | | allow to disable upload to lookup server, by default it is enabled | Bjoern Schiessle | 2017-04-07 | 2 | -1/+12 |
| | | | | | | | | | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org> | ||||
* | | | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-10 | 4 | -0/+34 |
| | | | |||||
* | | | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-09 | 16 | -0/+106 |
| | | | |||||
* | | | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-08 | 108 | -328/+338 |
| |/ |/| | |||||
* | | Add support for theming | Lukas Reschke | 2017-04-07 | 3 | -95/+196 |
| | | | | | | | | | | | | Add support for theming in generated emails and simplify API Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | | Fix tests | Lukas Reschke | 2017-04-07 | 1 | -8/+8 |
| | | | | | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | | New layout for welcome email | Morris Jobke | 2017-04-07 | 3 | -53/+31 |
|/ | | | | | | | * thanks to @espina2 for make this nice design * the button says "Set password" if the admin didn't specified a password Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-07 | 20 | -36/+110 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-06 | 90 | -298/+318 |
| | |||||
* | Merge pull request #3741 from nextcloud/user-settings-design | Roeland Jago Douma | 2017-04-05 | 1 | -13/+13 |
|\ | | | | | User mgmt settings design improvements | ||||
| * | correct sorting of user management settings, wording | Jan-Christoph Borchardt | 2017-04-04 | 1 | -13/+13 |
| | | | | | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-05 | 4 | -14/+76 |
|/ | |||||
* | Merge pull request #4093 from nextcloud/endorse-password-protection | Roeland Jago Douma | 2017-04-04 | 1 | -1/+3 |
|\ | | | | | Endorse password protection | ||||
| * | feature endorse password for share links | Bjoern Schiessle | 2017-04-03 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | works like "enforce password protection", but let the user optionally remove the password protection after the password is set. by Timo Benk Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org> | ||||
* | | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-04 | 4 | -0/+124 |
|/ | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-03 | 6 | -4/+16 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-02 | 4 | -0/+6 |
| | |||||
* | [tx-robot] updated from transifex | Nextcloud bot | 2017-04-01 | 2 | -32/+218 |
| |