X-Git-Url: https://git.auder.net/?a=blobdiff_plain;ds=sidebyside;f=server%2Fconfig%2Fparameters.js.dist;h=1cf44752d8f12fde3a363336feda1f25490ae1b3;hb=aa6d9b33f70c9baccac98ab41c72d2bd787eac83;hp=c19084111ccd0d70227e8494b9af213e7416e766;hpb=0234201fb338fc239d6f613c677fa932c7c3697c;p=vchess.git diff --git a/server/config/parameters.js.dist b/server/config/parameters.js.dist index c1908411..1cf44752 100644 --- a/server/config/parameters.js.dist +++ b/server/config/parameters.js.dist @@ -1,10 +1,11 @@ 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, @@ -30,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: [] + };