Skip to content

Commit

Permalink
[fix] Fixed group expired status.
Browse files Browse the repository at this point in the history
  • Loading branch information
yoneyan committed Jul 30, 2023
1 parent 6bee69a commit 2ad5e84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/api/core/group/v0/slack.go
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,11 @@ func expiredStatusText(status uint) string {
if status == 0 {
return "0"
} else if status == 1 {
return "ユーザより廃止"
return "審査落ち"
} else if status == 2 {
return "運営委員より廃止"
return "ユーザより廃止"
} else if status == 3 {
return "審査落ち"
return "運営委員より廃止"
} else {
return "status不明"
}
Expand Down

0 comments on commit 2ad5e84

Please sign in to comment.