Unicode文字でユーザー名を変更する際の問題

「moep」から「Möp」へのユーザー名の変更をテストしたところ、うまくいきました。

  • どのバージョンの Discourse を使用していますか?
  • これは標準インストールですか?
  • Discourse の前にリバースプロキシがありますか?
  • どのブラウザを使用していますか?
  • allowed_unicode_username_characters 設定の値は何ですか?
  • レールコンソールでの名前変更は機能しますか?
    ./launcher enter app
    rails c
    
    user = User.find_by_username("moep")
    new_username = "Möp"
    UsernameChanger.change(user, new_username, Discourse.system_user)
    
「いいね!」 2