[이민우] 캐릭터 생성 제한 구현 (대신 커밋)

This commit is contained in:
2023-08-31 11:55:31 +09:00
parent 0e070221f8
commit 5cc6ddc8f1
2 changed files with 3 additions and 1 deletions

View File

@ -478,7 +478,8 @@ func (mg *Maingate) RegisterHandlers(ctx context.Context, serveMux *http.ServeMu
State: DivisionState_FullOpen,
},
Url: fmt.Sprintf("http://%s/warehouse", ipaddr),
LockCreateChar: false,
Url: fmt.Sprintf("http://%s/warehouse", ipaddr),
},
}
}

View File

@ -96,6 +96,7 @@ type DivisionForUser struct {
type Division struct {
DivisionForUser `bson:",inline" json:",inline"`
Url string `bson:"url" json:"url"`
LockCreateChar bool `bson:"lockcreatechar" json:"lockcreatechar"`
}
type ServiceDescriptionSummary struct {