Compare commits

..

1 Commits

1 changed files with 2 additions and 3 deletions

View File

@ -41,14 +41,13 @@ def create(
lex: Lexicon = db(
select(Lexicon).where(Lexicon.id == lexicon_id)
).scalar_one_or_none()
assert lex, "could not find lexicon"
# Verify lexicon is joinable
# Verify lexicon is joinable; current no Lexicons are joinable so this is commented out
if not lex.joinable:
raise ArgumentError("Can't join: Lexicon is not joinable")
# Verify lexicon is not full
if lex.player_limit is not None:
if lex.player_limit:
if (
db(select(func.count()).where(Membership.lexicon_id == lexicon_id)).scalar()
>= lex.player_limit