summaryrefslogtreecommitdiffstats
path: root/settings/controller
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* introduce dependency analyzer to take care of app dependenciesThomas Müller2014-12-041-1/+9
| | | | some more unit tests on xml info parser
* Migrate "setsecurity.php" to the AppFrameworkLukas Reschke2014-11-031-0/+95
| | | | | | | | | | | | Add switch to enforce SSL for subdomains Add unit tests Add test for boolean values Camel-case Fix ugly JS
* Merge pull request #11600 from owncloud/refactor-appsettings-to-app-frameworkLukas Reschke2014-10-281-0/+132
|\ | | | | Migrate new app settings to AppFramework
| * Migrate new app settings to AppFrameworkLukas Reschke2014-10-151-0/+132
| | | | | | | | Let's migrate those two new files.
* | fixing typo in English source stringThomas Müller2014-10-161-1/+1
|/
* fixing typosThomas Müller2014-10-141-1/+1
|
* Refactor MailSettings controllerLukas Reschke2014-10-141-0/+166
- Do not store the password (fixes https://github.com/owncloud/core/issues/11385) - Refactor to AppFramework - Add unit tests Conflicts: settings/admin/controller.php