Merge pull request #1679 from Shuffle/nightly

Nightly
This commit is contained in:
Frikky
2025-04-04 11:23:27 +02:00
committed by GitHub
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ go 1.23.0
toolchain go1.23.7
//replace github.com/shuffle/shuffle-shared => ../../../shuffle-shared
//replace github.com/shuffle/shuffle-hared => ../../../shuffle-shared
require (
cloud.google.com/go/datastore v1.15.0
+6
View File
@@ -1024,6 +1024,11 @@ func handleInfo(resp http.ResponseWriter, request *http.Request) {
}
}
if parsedAdmin == "true" {
userInfo.Role = "admin"
userInfo.ActiveOrg.Role = "admin"
}
chatDisabled := false
if os.Getenv("SHUFFLE_CHAT_DISABLED") == "true" {
chatDisabled = true
@@ -1064,6 +1069,7 @@ func handleInfo(resp http.ResponseWriter, request *http.Request) {
activatedAppIds = append(activatedAppIds, app.ID)
}
returnValue := shuffle.HandleInfo{
Success: true,
Username: userInfo.Username,