mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-07-19 20:13:45 +01:00
Fix tests build
This commit is contained in:
+20
-1
@@ -1,5 +1,24 @@
|
||||
mutation CreateUserGroupWithInstanceListPerm($name: String!) {
|
||||
createUserGroup(input: { name: $name, permissionSet: { instanceManagerRights: { canList: true } } }) {
|
||||
createUserGroup(input: {
|
||||
name: $name
|
||||
permissionSet: {
|
||||
instanceManagerRights: {
|
||||
canList: true
|
||||
canCreate: false
|
||||
canDelete: false
|
||||
canGrantPermissions: false
|
||||
canRead: false
|
||||
canRelocate: false
|
||||
canRename: false
|
||||
canSetAutoUpdate: false
|
||||
canSetChatBotLimit: false
|
||||
canSetConfiguration: false
|
||||
canSetOnline: false
|
||||
canSetAutoStart: false
|
||||
canSetAutoStop: false
|
||||
}
|
||||
}
|
||||
}) {
|
||||
userGroup {
|
||||
id
|
||||
name
|
||||
|
||||
@@ -25,6 +25,8 @@ mutation SetFullPermsOnUserGroup($id: ID!) {
|
||||
canRead: true
|
||||
canList: true
|
||||
canRelocate: true
|
||||
canSetAutoStart: true
|
||||
canSetAutoStop: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user