##// END OF EJS Templates
vcs-settings: when setting landing ref from UI switch default GIT branch too....
vcs-settings: when setting landing ref from UI switch default GIT branch too. fixes #5663

File last commit:

r3658:b7b32afd default
r4753:515e2e65 default
Show More
user-admin-tasks.rst
24 lines | 621 B | text/x-rst | RstLexer

Common Admin Tasks for Users

Here is how to set a repository group as personal for a user using ishell.

# starts the ishell interactive prompt
$ rccontrol ishell enterprise-1
In [1]: repo_group = RepoGroup.get_by_group_name('some_group_name')
In [2]: user = User.get_by_username('some_user')
In [3]: repo_group.user = user
In [4]: repo_group.personal = True
In [5]: Session().add(repo_group);Session().commit()