feat: add donation goal overflow

This commit is contained in:
Ash Gray
2023-04-15 23:00:44 +02:00
parent 27feb7f9c4
commit c90fa18062
5 changed files with 27 additions and 8 deletions

View File

@@ -150,6 +150,9 @@ app.engine('handlebars', handlebars({
neq(value1, value2) {
return value1 !== value2;
},
greaterThan(value1, value2) {
return value1 > value2;
},
slug(string) {
return string.toLowerCase().replaceAll(/ /g, '-');
},