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
|
test/backend/**/*.js.map
|
||||||
demo/TEMP/
|
demo/TEMP/
|
||||||
config.json
|
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 {User, UserRoles} from "../../../common/entities/User";
|
||||||
import {IUserManager} from "../IUserManager";
|
import {IUserManager} from "../IUserManager";
|
||||||
import {ProjectPath} from "../../ProjectPath";
|
import {ProjectPath} from "../../ProjectPath";
|
||||||
|
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user