Merge with develop branch

This commit is contained in:
Sebastian Sdorra
2020-08-12 14:30:26 +02:00
99 changed files with 2199 additions and 557 deletions

View File

@@ -24,6 +24,8 @@
import { Links } from "./hal";
export type AnonymousMode = "FULL" | "PROTOCOL_ONLY" | "OFF";
export type Config = {
proxyPassword: string | null;
proxyPort: number;
@@ -34,6 +36,7 @@ export type Config = {
disableGroupingGrid: boolean;
dateFormat: string;
anonymousAccessEnabled: boolean;
anonymousMode: AnonymousMode;
baseUrl: string;
forceBaseUrl: boolean;
loginAttemptLimit: number;

View File

@@ -42,7 +42,7 @@ export { AnnotatedSource, AnnotatedLine } from "./Annotate";
export { Tag } from "./Tags";
export { Config } from "./Config";
export { Config, AnonymousMode } from "./Config";
export { IndexResources } from "./IndexResources";