Merge pull request #24705 from joeandaverde/patch-1

Fix incorrect privacy option
This commit is contained in:
Paul van Brenk
2018-04-04 10:47:44 -07:00
committed by GitHub
+1 -1
View File
@@ -1143,7 +1143,7 @@ export interface RouteOptionsAccess {
* [See docs](https://github.com/hapijs/hapi/blob/master/API.md#-routeoptionscache)
*/
export type RouteOptionsCache = {
privacy?: 'default' | 'public' | 'privacy';
privacy?: 'default' | 'public' | 'private';
statuses?: number[];
otherwise?: string;
} & (