From 27716257e37b62d3690153ea5c366d9da99fa62d Mon Sep 17 00:00:00 2001 From: Dominik Date: Tue, 2 Oct 2018 20:12:10 +0200 Subject: [PATCH] Fix syntax error --- src/models/Match.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/Match.js b/src/models/Match.js index 9be21c4..78b515f 100644 --- a/src/models/Match.js +++ b/src/models/Match.js @@ -14,6 +14,6 @@ const matchSchema = mongoose.Schema({ } }, { timestamps: true -}; +}); const Match = module.exports = mongoose.model('Match', matchSchema, 'matches'); \ No newline at end of file