Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Nico-Sanchez committed Jan 6, 2025
1 parent a3ea317 commit 33d961e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/game_backend/lib/game_backend/configuration.ex
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ defmodule GameBackend.Configuration do
"""
def list_game_mode_configurations_by_version(version_id) do
from(gm in GameModeConfiguration,
where: gm.version_id == ^version_id and is_nil(gm.deleted_at),
preload: [map_mode_params: :map]
where: gm.version_id == ^version_id and is_nil(gm.deleted_at),
preload: [map_mode_params: :map]
)
|> Repo.all()
end
Expand Down

0 comments on commit 33d961e

Please sign in to comment.