Remove tourneyPath: doesn't make sense without tournament website
[vchess.git] / server / config / parameters.js.dist
index 264fac5..1cf4475 100644 (file)
@@ -1,11 +1,11 @@
-module.exports =
-{
+module.exports = {
+
   // For mail sending. NOTE: *no trailing slash*
   siteURL: "http://localhost:8080",
 
   // To know in which environment the code run
   env: process.env.NODE_ENV || 'development',
-  
+
   // CORS: cross-origin resource sharing options
   cors: {
     enable: true,
@@ -31,4 +31,8 @@ module.exports =
     noreply: "some_noreply_email",
     contact: "some_contact_email",
   },
+
+  // IDs of users allowed to post news and edit any problem
+  devs: []
+
 };