We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
リロードした時にユーザー消えるの不便そう、復帰もできないし
↓一緒にuserIdも保存してもらってセッションごとに同じuserId使うのどうですか、セッション使うとややデバッグめんどくさくなりそうだけど cat-crosswalk/nascalay-frontend#85
The text was updated successfully, but these errors were encountered:
セッションはいらなくて,userId->roomを持つ配列を作っておけば復帰するようにできそう (今のままだと全探索になる)
userId->room
Sorry, something went wrong.
それならすでにこれがあるのでエンドポイント増やせばいいかな
func (r *storeRepository) GetRoomFromUserId(uid model.UserId) (*model.Room, error) { rid, ok := r.userIdToRoomId[uid] if !ok { return nil, repository.ErrNotFound } room, ok := r.room[rid] if !ok { return nil, repository.ErrNotFound } return room, nil }
増やすかフロントにuserIdが残っていたときに /ws 叩いてもらうかかな
userId
/ws
No branches or pull requests
リロードした時にユーザー消えるの不便そう、復帰もできないし
↓一緒にuserIdも保存してもらってセッションごとに同じuserId使うのどうですか、セッション使うとややデバッグめんどくさくなりそうだけど
cat-crosswalk/nascalay-frontend#85
The text was updated successfully, but these errors were encountered: