1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
This commit is contained in:
Braun Patrik 2016-07-07 13:56:39 +02:00
parent a68159cfea
commit da4646ac69
4 changed files with 6 additions and 2 deletions

1
.gitignore vendored
View File

@ -16,3 +16,4 @@ test/backend/**/*.js
test/backend/**/*.js.map test/backend/**/*.js.map
demo/TEMP/ demo/TEMP/
config.json config.json
users.db

View File

@ -1 +1 @@
web: node ./backend/server.js web: node ./backend/server.js --Client-authenticationRequired=false

View File

@ -1,3 +1,6 @@
///<reference path="flat-file-db.ts"/>
import {User, UserRoles} from "../../../common/entities/User"; import {User, UserRoles} from "../../../common/entities/User";
import {IUserManager} from "../IUserManager"; import {IUserManager} from "../IUserManager";
import {ProjectPath} from "../../ProjectPath"; import {ProjectPath} from "../../ProjectPath";

View File

@ -39,7 +39,7 @@ export class ConfigClass {
enableCache: false, enableCache: false,
enableOnScrollRendering: true, enableOnScrollRendering: true,
enableOnScrollThumbnailPrioritising: true, enableOnScrollThumbnailPrioritising: true,
authenticationRequired: false authenticationRequired: true
}; };
public setDatabaseType(type:DatabaseType) { public setDatabaseType(type:DatabaseType) {