aboutsummaryrefslogtreecommitdiff
path: root/internal/route/org/teams.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/route/org/teams.go')
-rw-r--r--internal/route/org/teams.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/route/org/teams.go b/internal/route/org/teams.go
index 7f932f3f..b99b0a1b 100644
--- a/internal/route/org/teams.go
+++ b/internal/route/org/teams.go
@@ -91,7 +91,7 @@ func TeamsAction(c *context.Context) {
c.Flash.Error(c.Tr("form.last_org_owner"))
} else {
log.Error("Action(%s): %v", c.Params(":action"), err)
- c.JSONSuccess(map[string]interface{}{
+ c.JSONSuccess(map[string]any{
"ok": false,
"err": err.Error(),
})
@@ -265,7 +265,7 @@ func DeleteTeam(c *context.Context) {
c.Flash.Success(c.Tr("org.teams.delete_team_success"))
}
- c.JSONSuccess(map[string]interface{}{
+ c.JSONSuccess(map[string]any{
"redirect": c.Org.OrgLink + "/teams",
})
}