Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • user1-admin and user2-admin should have admin permissions and should be able to take the same actions the user "owner" can do.
Code Block
languagebash
themeRDark
# If we know that those users will always share the same permissions, we can create an "admin" group for them
./build/bin/opencga.sh studies groups-create -s projectAlias:studyAlias --users user1-admin,user2-admin --group admin

# And now we give admin permissions to the @admin group. Important: groups in opencga are always preceded by @ internally although it is not mandatory adding it when we create it !
./build/bin/opencga.sh studies acl-create --members @admin --template admin -s projectAlias:studyAlias

...