Re: User Account Management through REST API

2010-06-30 Thread David Solbach
On Tue, Jun 29, 2010 at 10:35 AM, David Solbach d...@vidsolbach.de wrote: Hi there, is it possible to create / delete / modify users using the REST API in 1.5? I found a call to list all users, but nothing more in the documentation, yet. Is there a list of undocumented API calls somewhere?

Re: User Account Management through REST API

2010-06-30 Thread Christian Hammond
On Wed, Jun 30, 2010 at 1:45 AM, David Solbach d...@vidsolbach.de wrote: On Tue, Jun 29, 2010 at 10:35 AM, David Solbach d...@vidsolbach.de wrote: Hi there, is it possible to create / delete / modify users using the REST API in 1.5? I found a call to list all users, but nothing more in

Re: User Account Management through REST API

2010-06-30 Thread Thilo-Alexander Ginkel
On Wed, Jun 30, 2010 at 11:19, Christian Hammond chip...@chipx86.com wrote: I know what other people have done is written custom auth backends to talk to a central database for users, so instead of creating/updating users in Review Board based on redmine's data, you'd just have Review Board use

Re: User Account Management through REST API

2010-06-30 Thread Christian Hammond
On Wednesday, June 30, 2010, Thilo-Alexander Ginkel th...@ginkel.com wrote: Redmine does support LDAP as a backend and adding a custom authentication backend to Redmine is also trivial (just implement an AuthSource - takes less than 40 lines of code for simple DB-based authentication). What

Fwd: User Account Management through REST API

2010-06-30 Thread Ben Cooksley
Forwarding due to delivery failure... -- Forwarded message -- From: Eike Hein h...@kde.org Date: Wed, Jun 30, 2010 at 9:40 PM Subject: Re: User Account Management through REST API To: reviewboard@googlegroups.com Cc: sysad...@kde.org On 6/30/2010 11:19 AM, Christian Hammond

Re: User Account Management through REST API

2010-06-30 Thread Jeff Mitchell
On 6/30/2010 2:34 PM, Christian Hammond wrote: You actually can add a user in LDAP who is not in Review Board as a reviewer. They won't appear in the autocomplete, but if you type the name it will work. Review Board checks the auth backend for any unrecognized names that are entered and pulls

Re: User Account Management through REST API

2010-06-30 Thread Christian Hammond
On Wed, Jun 30, 2010 at 1:53 PM, Jeff Mitchell mitch...@kde.org wrote: On 6/30/2010 2:34 PM, Christian Hammond wrote: You actually can add a user in LDAP who is not in Review Board as a reviewer. They won't appear in the autocomplete, but if you type the name it will work. Review Board

Re: User Account Management through REST API

2010-06-30 Thread Thilo-Alexander Ginkel
On Wednesday 30 June 2010 20:34:31 Christian Hammond wrote: You actually can add a user in LDAP who is not in Review Board as a reviewer. They won't appear in the autocomplete, but if you type the name it will work. Review Board checks the auth backend for any unrecognized names that are

Re: User Account Management through REST API

2010-06-30 Thread Christian Hammond
On Wednesday, June 30, 2010, Thilo-Alexander Ginkel th...@ginkel.com wrote: On Wednesday 30 June 2010 20:34:31 Christian Hammond wrote: You actually can add a user in LDAP who is not in Review Board as a reviewer. They won't appear in the autocomplete, but if you type the name it will work.

Re: User Account Management through REST API

2010-06-29 Thread Christian Hammond
Hi David, There aren't any calls for this today. The only way to programatically do this is by issuing HTTP POSTs to the proper page in the admin UI. It's something we could possibly add in a future release, but won't happen for 1.5. Technically, all the new APIs in 1.5 are undocumented, in that