From c853a79a1eeeba7670cf1509225dc0e7959a7189 Mon Sep 17 00:00:00 2001 From: schneefux Date: Mon, 10 Apr 2017 18:43:05 +0200 Subject: export Gamer --- model.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'model.js') diff --git a/model.js b/model.js index 94d351f..cb78ff7 100644 --- a/model.js +++ b/model.js @@ -25,7 +25,10 @@ module.exports = (seq, Seq) => { // stats aggregations PlayerPoint = seq.import("./models/player_point.js"), - GlobalPoint = seq.import("./models/global_point.js"); + GlobalPoint = seq.import("./models/global_point.js"), + + // registered special users + Gamer = seq.import("./models/gamer.js"); Roster.belongsTo(Match, { foreignKey: "match_api_id", targetKey: "api_id" }); @@ -44,6 +47,7 @@ module.exports = (seq, Seq) => { Item, Hero, Series, GameMode, Role, Filter, ItemParticipant, ParticipantStats, - PlayerPoint, GlobalPoint + PlayerPoint, GlobalPoint, + Gamer }; }; -- cgit v1.3.1