1234567891011121314151617181920212223242526272829303132333435363738 |
- const path = require('path');
- module.exports.userPath = "data/users/";
- module.exports.pathToUserDir = function (u)
- {
- return module.exports.userPath+u+"/";
- }
- module.exports.pathToUserFile = function (u)
- {
- return module.exports.pathToUserDir(u)+"user.json";
- }
- module.exports.pathToProjectDir = function (u, p)
- {
- return module.exports.pathToUserDir(u) + p+"/";
- }
- module.exports.pathToProjectFile = function (u, p)
- {
- return module.exports.pathToProjectDir(u, p)+"project.json";
- }
- module.exports.pathToResourceDir = function (u, p)
- {
- return module.exports.pathToProjectDir(u, p)+"resources/";
- }
- module.exports.pathToResourceFile = function (u, p, r)
- {
- return module.exports.pathToResourceDir(u, p)+r+".json";
- }
- module.exports.groups = {
- user: "user",
- admin: "admin"
- }
|