##// END OF EJS Templates
users/user-groups: added context of what we're editing....
users/user-groups: added context of what we're editing. - Before panel titles didn't show names of edited objects which could be confusing and lead to editing wrong users or user groups.

File last commit:

r3658:b7b32afd default
r4232:60646747 stable
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()