summaryrefslogtreecommitdiffstats
path: root/settings/controller
Commit message (Collapse)AuthorAgeFilesLines
* Adjust tests and statuscodeLukas Reschke2015-04-201-1/+1
|
* Migrate personal certificate handling into AppFramework controllersLukas Reschke2015-04-201-0/+93
| | | | Also added unit-tests and better error-handling
* allow user to start migration in admin settings if no external user ↵Bjoern Schiessle2015-04-161-0/+122
| | | | back-ends are enabled
* Merge pull request #15314 from owncloud/app-categories-15274Lukas Reschke2015-04-091-17/+58
|\ | | | | Add different trust levels to AppStore interface
| * Add experimental applications switchLukas Reschke2015-04-031-17/+58
| | | | | | | | Allows administrators to disable or enabled experimental applications as well as show the trust level.
* | Remove hardcoded link to performance docsJoas Schilling2015-04-071-0/+7
|/
* Add check for activated local memcacheLukas Reschke2015-03-281-0/+99
| | | | | | Also used the opportunity to refactor it into an AppFramework controller so that we can unit test it. Fixes https://github.com/owncloud/core/issues/14956
* use StreamResponse to download the log file - fixes #14268Thomas Müller2015-03-271-36/+6
|
* Update license headersJenkins for ownCloud2015-03-266-33/+108
|
* remove unneeded status element from json response on /categories - fixes 15056Thomas Müller2015-03-231-1/+0
|
* show a better error message when trying to create a user that already existsRobin Appelman2015-03-201-0/+9
|
* Show more detailed error messageLukas Reschke2015-03-161-12/+12
|
* Incorporate review changesLukas Reschke2015-03-161-3/+2
|
* Migrate to SwiftMailLukas Reschke2015-03-162-21/+22
| | | | | | | | | | | | | | | | | | | | | Replaces the OC_Mail and phpmailer with SwiftMail allowing us to mock it properly. Fixes the unit test execution on master on local machines and https://github.com/owncloud/core/issues/12014 Conflicts: 3rdparty lib/private/server.php lib/public/iservercontainer.php tests/lib/mail.php tests/settings/controller/mailsettingscontrollertest.php Conflicts: 3rdparty lib/private/mail.php lib/private/server.php lib/public/iservercontainer.php settings/ajax/lostpassword.php settings/application.php
* Let users configure security headers in their WebserverLukas Reschke2015-03-021-37/+0
| | | | | | | | | | Doing this in the PHP code is not the right approach for multiple reasons: 1. A bug in the PHP code prevents them from being added to the response. 2. They are only added when something is served via PHP and not in other cases (that makes for example the newest IE UXSS which is not yet patched by Microsoft exploitable on ownCloud) 3. Some headers such as the Strict-Transport-Security might require custom modifications by administrators. This was not possible before and lead to buggy situations. This pull request moves those headers out of the PHP code and adds a security check to the admin settings performed via JS.
* Revert "Updating license headers"Morris Jobke2015-02-266-103/+39
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* don't allow installation of already installed apps - fixes #14004Thomas Müller2015-02-231-6/+29
|
* Updating license headersJenkins for ownCloud2015-02-236-39/+103
|
* Return milliseconds instead of seconds for lastLogin - refs #14005Thomas Müller2015-02-161-1/+1
|
* Merge pull request #13790 from owncloud/fix-subadmin-groupThomas Müller2015-02-021-24/+43
|\ | | | | Fix subadmin listing of group
| * Consistent variable namingLukas Reschke2015-01-301-10/+9
| |
| * Switch to a factory and add unit testsLukas Reschke2015-01-301-22/+21
| |
| * Add unit testsLukas Reschke2015-01-301-9/+15
| |
| * Fix subadmin listing of groupLukas Reschke2015-01-301-6/+21
| | | | | | | | | | | | Without this patch filtering for the "_everyone" (empty) group did not work for subadmins. Fixes itself.
* | Check whether return is an error case before using itJoas Schilling2015-01-301-8/+12
|/
* Add value if restore of data is possible for a userMorris Jobke2015-01-271-6/+47
| | | | | | | | | | | * reason: nice to know before password change in user management * restore is possible: * encryption is disabled * encryption is enabled, admin and user has checked the restore option * if not possible: * highlight users row in red once the admin wants to change the password * show also a little tipsy
* Use setConfigs() instead of calling setConfig() multiple timesJoas Schilling2015-01-231-10/+11
|
* Fix filtering for users when $gid is emptyLukas Reschke2015-01-181-1/+1
| | | | | | Previously when $gid was empty the users were not filtered at all. Rendering the search function in the user management pretty useless. Fixes itself
* sorting enabled and disabled apps alphabetically - fixes #13404Thomas Müller2015-01-161-0/+16
|
* Cache responses from the AppStore serverLukas Reschke2015-01-091-43/+57
| | | | | | | | | | Otherwise every time the AppStore was opened a lot of connections to the AppStore server were made which resulted in a terrible performance. This changeset will cache the response for a sensible time so that only the first request will be somewhat slow. Performance changes: - Loading a category took previously more than 3 seconds on my machine. Now for every follow-up request it takes less than 200ms, resulting in a performance gain of 1950% - Loading the category list took previously about 750ms - now it takes 154ms, a total performance gain of 395%
* Merge pull request #12988 from owncloud/logfile_downloadMorris Jobke2015-01-091-0/+126
|\ | | | | Logfile download
| * add Download logfile button to admin settingsGeorg Ehrke2015-01-071-0/+126
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add logSettingsController add download logfile button move getEntries to LogSettingsController move set log level to logsettingscontroller.php add warning if logfile is bigger than 100MB add unit test for set log level fix typecasting, add new line at EoF show log and logfile download only if log_type is set to owncloud add unit test for getFilenameForDownload
* | fixing wrong usage of license vs licenceThomas Müller2015-01-061-1/+8
|/
* Mail address of users is now changable in the user managementMorris Jobke2014-12-181-6/+93
| | | | | | | | | | | * introduced new route settings/users/{id}/mailAddress * kept old responses * better error messages * dropped lostpassword.php from settings/ajax * cleaned up the UserList.add() and hand in user object instead of each attribute as another parameter * check for change permission of mail address * proper response messages
* Send mail for new usersMorris Jobke2014-12-161-7/+81
| | | | | | * supply mail address * send mail with username and URL to that mail address * option to temporary enable this feature
* Merge pull request #12625 from owncloud/app-dependencies-libs-and-commandsBernhard Posselt2014-12-151-3/+3
|\ | | | | adding dependencies for command line tools and php libraries
| * rework api of DependencyAnalyzerThomas Müller2014-12-121-3/+3
| |
* | Merge pull request #12726 from owncloud/add-filter-for-backend-to-rest-indexMorris Jobke2014-12-131-17/+41
|\ \ | | | | | | Add filter for backend to rest index
| * | Make comment clearLukas Reschke2014-12-121-1/+1
| | |
| * | Comment code pathLukas Reschke2014-12-121-0/+1
| | |
| * | Use limit and offsetLukas Reschke2014-12-121-1/+1
| | |
| * | Use array key instead of valueLukas Reschke2014-12-121-1/+1
| | |
| * | Break loopLukas Reschke2014-12-111-0/+1
| | |
| * | Add filter for 'backend' to user REST routeLukas Reschke2014-12-101-17/+39
| |/ | | | | | | | | | | | | | | This adds a "backend" type filter to the index REST route which is a pre-requisite for https://github.com/owncloud/core/issues/12620 For example when calling `index.php/settings/users/users?offset=0&limit=10&gid=&pattern=&backend=OC_User_Database` only users within the backend `OC_User_Database` would be shown. (requires sending a CSRF token as well) Depends upon https://github.com/owncloud/core/pull/12711
* / Show user backend in user managementMorris Jobke2014-12-121-1/+2
|/ | | | | | | * add switch to settings to show user backend * user classes for headers and rows to unify the show/hide statement * add user backend to response of user create request * proper markup in settings area
* Expose backend type via REST APILukas Reschke2014-12-091-24/+26
| | | | | | | | | This change will expose the user backend via the REST API which is a pre-requisite for https://github.com/owncloud/core/issues/12620. For example: ````json [{"name":"9707A09E-CA9A-4ABE-A66A-3F632F16C409","displayname":"Document Conversion User Account","groups":[],"subadmin":[],"quota":"default","storageLocation":"\/Users\/lreschke\/Programming\/core\/data\/9707A09E-CA9A-4ABE-A66A-3F632F16C409","lastLogin":0,"backend":"OCA\\user_ldap\\USER_LDAP"},{"name":"ED86733E-745C-4E4D-90CB-278A9737DB3C","displayname":"Hacker","groups":[],"subadmin":[],"quota":"default","storageLocation":"\/Users\/lreschke\/Programming\/core\/data\/ED86733E-745C-4E4D-90CB-278A9737DB3C","lastLogin":0,"backend":"OCA\\user_ldap\\USER_LDAP"},{"name":"71CDF45B-E125-450D-983C-D9192F36EC88","displayname":"admin","groups":[],"subadmin":[],"quota":"default","storageLocation":"\/Users\/lreschke\/Programming\/core\/data\/71CDF45B-E125-450D-983C-D9192F36EC88","lastLogin":0,"backend":"OCA\\user_ldap\\USER_LDAP"},{"name":"admin","displayname":"admin","groups":["admin"],"subadmin":[],"quota":"default","storageLocation":"\/Users\/lreschke\/Programming\/core\/data\/admin","lastLogin":"1418057287","backend":"OC_User_Database"},{"name":"test","displayname":"test","groups":[],"subadmin":[],"quota":"default","storageLocation":"\/Users\/lreschke\/Programming\/core\/data\/test","lastLogin":0,"backend":"OC_User_Database"}] ```
* React on other statuscodes than 200Lukas Reschke2014-12-082-18/+6
|
* Add statuscodesLukas Reschke2014-12-082-13/+27
|
* Add REST route for user & group managementLukas Reschke2014-12-082-0/+391
| | | | First step of a somewhat testable user management. - I know, the JSON returns are in an ugly format but the JS expects it that way. So let's keep it that way until we have time to fix the JS in the future.
* adding supported databasesThomas Müller2014-12-041-1/+1
|