From d7ae1e694112d6a4bfc9d528aa738fb04946a0b3 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 15 Sep 2023 20:50:51 +0200 Subject: Enforce limits on how many games you can create and join. Also limit joining more games if you have too many games waiting. Generous default limits: 7 open, 29 active, and 3 waiting. --- views/create.pug | 7 +++++-- views/join.pug | 4 ++++ 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'views') diff --git a/views/create.pug b/views/create.pug index d742cfc..c8c70b2 100644 --- a/views/create.pug +++ b/views/create.pug @@ -38,5 +38,8 @@ html label input(type="checkbox" name="is_private" value="true") | Private - p - button(type="submit") Create + if limit + p.error= limit + else + p + button(type="submit") Create diff --git a/views/join.pug b/views/join.pug index ced1fe3..3110bd3 100644 --- a/views/join.pug +++ b/views/join.pug @@ -27,6 +27,7 @@ html let whitelist = !{ JSON.stringify(whitelist) } let blacklist = !{ JSON.stringify(blacklist) } let friends = !{ JSON.stringify(friends) } + let limit = !{ !!limit } let ready = !{ ready } script(src="/join.js") body @@ -36,6 +37,9 @@ html h1 #{game.title_name} else h1 #{game.title_name} - #{game.scenario} + + if limit + p.error= limit p.error#error div.logo -- cgit v1.2.3