summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2017-04-10 18:43:05 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2017-04-10 18:43:05 +0200
commitc853a79a1eeeba7670cf1509225dc0e7959a7189 (patch)
treebd78097efc033b9fad9b9002a4797af3dc77442e
parent912fbc20b1800a01dbdb61fc01d56392dbf15a7a (diff)
downloadorm-c853a79a1eeeba7670cf1509225dc0e7959a7189.tar.gz
orm-c853a79a1eeeba7670cf1509225dc0e7959a7189.zip
export Gamer
-rw-r--r--model.js8
1 files changed, 6 insertions, 2 deletions
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
};
};