diff options
Diffstat (limited to 'src/api/serializers')
| -rw-r--r-- | src/api/serializers/app.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/api/serializers/app.ts b/src/api/serializers/app.ts index 9a02c5637a..fdeef338d9 100644 --- a/src/api/serializers/app.ts +++ b/src/api/serializers/app.ts @@ -21,8 +21,8 @@ export default ( app: any, me?: any, options?: { - includeSecret: boolean, - includeProfileImageIds: boolean + includeSecret?: boolean, + includeProfileImageIds?: boolean } ) => new Promise<any>(async (resolve, reject) => { const opts = options || { |