Skip to content

Commit

Permalink
Merge pull request #193 from homenoc/develop
Browse files Browse the repository at this point in the history
[fix] Fixed group expired status.
  • Loading branch information
yoneyan authored Jul 30, 2023
2 parents a9c319d + 2ad5e84 commit 00c9f78
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 00c9f78

Please sign in to comment.