mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
bug fix
This commit is contained in:
parent
a68159cfea
commit
da4646ac69
1
.gitignore
vendored
1
.gitignore
vendored
@ -16,3 +16,4 @@ test/backend/**/*.js
|
||||
test/backend/**/*.js.map
|
||||
demo/TEMP/
|
||||
config.json
|
||||
users.db
|
||||
|
2
Procfile
2
Procfile
@ -1 +1 @@
|
||||
web: node ./backend/server.js
|
||||
web: node ./backend/server.js --Client-authenticationRequired=false
|
@ -1,3 +1,6 @@
|
||||
///<reference path="flat-file-db.ts"/>
|
||||
|
||||
|
||||
import {User, UserRoles} from "../../../common/entities/User";
|
||||
import {IUserManager} from "../IUserManager";
|
||||
import {ProjectPath} from "../../ProjectPath";
|
||||
|
@ -39,7 +39,7 @@ export class ConfigClass {
|
||||
enableCache: false,
|
||||
enableOnScrollRendering: true,
|
||||
enableOnScrollThumbnailPrioritising: true,
|
||||
authenticationRequired: false
|
||||
authenticationRequired: true
|
||||
};
|
||||
|
||||
public setDatabaseType(type:DatabaseType) {
|
||||
|
Loading…
Reference in New Issue
Block a user