mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-17 18:05:42 +02:00
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com> Signed-off-by: Andrey Sobolev <haiodo@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Andrey Sobolev <haiodo@gmail.com>
17 lines
632 B
Bash
Executable File
17 lines
632 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Restore workspace contents in mongo/elastic
|
|
./tool.sh backup-restore ./sanity-ws sanity-ws --upgrade
|
|
|
|
# Re-assign user to workspace.
|
|
./tool.sh assign-workspace user1 sanity-ws
|
|
./tool.sh assign-workspace user2 sanity-ws
|
|
|
|
./tool.sh set-user-role user1 sanity-ws OWNER
|
|
./tool.sh set-user-role user2 sanity-ws OWNER
|
|
|
|
./tool.sh configure sanity-ws --enable=*
|
|
./tool.sh configure sanity-ws --list
|
|
|
|
# setup issue createdOn for yesterday
|
|
./tool.sh change-field sanity-ws --objectId 65e47f1f1b875b51e3b4b983 --objectClass tracker:class:Issue --attribute createdOn --value $(($(date +%s)*1000 - 86400000)) --type number |