diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-01-19 15:19:20 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2017-01-19 15:19:20 +0100 |
commit | 1f7b08bd19dd37bec73903679b3e0bfdaed71927 (patch) | |
tree | be790bbce3d66cdeb4e0137c29bcea7909a7cb89 /apps/user_ldap/appinfo | |
parent | f2c9d04eac7c0875040b3e46cc1dccc7d290789f (diff) | |
download | nextcloud-server-1f7b08bd19dd37bec73903679b3e0bfdaed71927.tar.gz nextcloud-server-1f7b08bd19dd37bec73903679b3e0bfdaed71927.zip |
LDAP OCS Api for show config
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/appinfo')
-rw-r--r-- | apps/user_ldap/appinfo/routes.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/user_ldap/appinfo/routes.php b/apps/user_ldap/appinfo/routes.php index f08ec195add..45b43c21409 100644 --- a/apps/user_ldap/appinfo/routes.php +++ b/apps/user_ldap/appinfo/routes.php @@ -41,6 +41,7 @@ $application = new \OCP\AppFramework\App('user_ldap'); $application->registerRoutes($this, [ 'ocs' => [ ['name' => 'ConfigAPI#create', 'url' => '/api/v1/config', 'verb' => 'POST'], + ['name' => 'ConfigAPI#show', 'url' => '/api/v1/config/{configID}', 'verb' => 'GET'], ['name' => 'ConfigAPI#modify', 'url' => '/api/v1/config/{configID}', 'verb' => 'PUT'], ['name' => 'ConfigAPI#delete', 'url' => '/api/v1/config/{configID}', 'verb' => 'DELETE'], ] |