##// END OF EJS Templates
fix(imports): fixed circular import problem
fix(imports): fixed circular import problem

File last commit:

r3658:b7b32afd default
r5341:115837d2 tip 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()