Fix incorrect privacy option

This commit is contained in:
Joe Andaverde
2018-04-03 23:33:20 -05:00
parent 60c1e22519
commit ea50f76f8e
+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;
} & (