Re: Can I create a new user in reviewboard using the Python Web API?

2015-04-07 Thread Steve
Adding a repo turned out to be easy: root = client.get_root() root.get_repositories().create(name='perforce', tool="Perforce", path="localhost:1492") I'm all set. Thanks! --Steve On Tuesday, April 7, 2015 at 7:40:50 AM UTC-7, Steve wrote: > > Okay, makes sense. I can work around that. Is t

Re: Can I create a new user in reviewboard using the Python Web API?

2015-04-07 Thread Steve
Okay, makes sense. I can work around that. Is there support for adding a perforce repository via the API? That's the only other piece I need to automate my tests. Thanks --Steve On Monday, April 6, 2015 at 6:41:32 PM UTC-7, Christian Hammond wrote: > > Hi Steve, > > There's no support in t

Re: Can I create a new user in reviewboard using the Python Web API?

2015-04-06 Thread Christian Hammond
Hi Steve, There's no support in the API for creating users. This must be done through the web UI or through an authentication backend, like LDAP or Active Directory. Christian -- Christian Hammond - chip...@chipx86.com Review Board - http://www.reviewboard.org Beanbag, Inc. - http://www.beanbag

Can I create a new user in reviewboard using the Python Web API?

2015-04-06 Thread Steve
I've been chasing my tail for a few hours on this and thought it was time for some help. For testing, I want to spin up a new rb site, which I have a script to do, and then create 2 new users for posting reviews. I can access existing users this way: client = RBClient("http://localhost";) root