We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c32ba5f commit e1493c7Copy full SHA for e1493c7
services/app/apps/codebattle/lib/codebattle/user.ex
@@ -62,7 +62,7 @@ defmodule Codebattle.User do
62
field(:github_id, :integer)
63
field(:github_name, :string)
64
field(:is_bot, :boolean, default: false)
65
- field(:lang, :string, default: "js")
+ field(:lang, :string, default: "python")
66
field(:name, :string)
67
field(:password_hash, :string)
68
field(:public_id, :binary_id)
@@ -134,6 +134,7 @@ defmodule Codebattle.User do
134
id: @guest_id,
135
name: "John Doe",
136
subscription_type: :free,
137
+ lang: "python",
138
rating: 0,
139
rank: 0,
140
sound_settings: %SoundSettings{}
0 commit comments