Enable initial admin users

This commit is contained in:
Felix Albrigtsen 2022-04-25 13:53:33 +02:00
parent bff4e83730
commit 01d280dba3
2 changed files with 9 additions and 4 deletions

View File

@ -48,8 +48,8 @@ CREATE TABLE users (
);
-- Example data (Two tournaments, 4 teams, single elimination)
INSERT INTO tournaments (name, description, startTime, endTime, teamLimit) VALUES ('Tournament 1', 'First tournament, single elimination', '2022-06-01 16:00:00', '2022-06-01 20:00:00', 4);
INSERT INTO tournaments (name, description, startTime, endTime, teamLimit) VALUES ('Tournament 2', 'Second tournament, four teams', '2022-03-03 17:30:00', '2022-03-04 21:30:00', 8);
INSERT INTO tournaments (name, description, prize, startTime, endTime, teamLimit) VALUES ('Tournament 1', 'First tournament, single elimination', '300 000 points', '2022-04-29 16:00:00', '2022-04-29 20:00:00', 4);
INSERT INTO tournaments (name, description, prize, startTime, endTime, teamLimit) VALUES ('Tournament 2', 'Second tournament, four teams', '450 000 points', '2022-04-29 09:00:00', '2022-04-29 10:30:00', 8);
INSERT INTO teams (tournamentId, name) VALUES (1, 'Fnatic'); -- 1
INSERT INTO teams (tournamentId, name) VALUES (1, 'Cloud 9'); -- 2
@ -82,4 +82,9 @@ INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id, tier) VALUES
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id, tier) VALUES (2, 5, 5, 6, 2); -- 7
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id, tier) VALUES (2, 5, 7, 8, 2); -- 8
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id, tier) VALUES (2, 6, 9, 10, 2); -- 9
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id, tier) VALUES (2, 6, 11, 12, 2); -- 10
INSERT INTO matches (tournamentId, parentMatchId, team1Id, team2Id, tier) VALUES (2, 6, 11, 12, 2); -- 10
INSERT INTO users (email, isManager) VALUES ('felixalbrigtsen@gmail.com', 1);
INSERT INTO users (email, isManager) VALUES ('kriloneri@gmail.com', 1);
INSERT INTO users (email, isManager) VALUES ('limboblivion@gmail.com', 1);
INSERT INTO users (email, isManager) VALUES ('jonas.haugland98@gmail.com', 1);

View File

@ -543,7 +543,7 @@ function createUserBlank(email) {
function editUser(email, user) {
return new Promise(function(resolve, reject) {
if (!user.isManager) { // If isManager is not defined (or false)
if (user.isManager == undefined) {
user.isManager = false;
}
connection.query("UPDATE users SET googleId = ?, name = ?, isManager = ? WHERE email = ?", [escapeString(user.googleId), escapeString(user.name), escapeString(user.isManager), escapeString(email)], (err, sets) => {