From fda1ab3e05823a5ee61125636d76e06e2778938a Mon Sep 17 00:00:00 2001 From: Tosuke Date: Mon, 13 Aug 2018 12:30:32 +0900 Subject: Create apps without authentication(#2025) --- src/models/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/models') diff --git a/src/models/app.ts b/src/models/app.ts index 8dc7fe01d9..01cc946c6e 100644 --- a/src/models/app.ts +++ b/src/models/app.ts @@ -13,7 +13,7 @@ export default App; export type IApp = { _id: mongo.ObjectID; createdAt: Date; - userId: mongo.ObjectID; + userId: mongo.ObjectID | null; secret: string; name: string; nameId: string; -- cgit v1.2.3-freya