Skip to content

Commit

Permalink
fix(config): add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbeau committed Sep 15, 2017
1 parent 1c5d473 commit 0d09a8b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/configurations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ interface ILdapConfiguration {
baseSearch: string;
}

interface ILocalhostConfiguration {
hosts: string[];
basePaths: string[];
}

export interface IServerConfiguration {
port: number;
plugins: Array<string>;
Expand All @@ -29,6 +34,7 @@ export interface IServerConfiguration {
ldap: ILdapConfiguration;
googleKey?: string;
adminProfil?: string;
localhost?: ILocalhostConfiguration;
}

interface IDatabaseConfiguration {
Expand Down

0 comments on commit 0d09a8b

Please sign in to comment.