You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/pages/[platform]/how-amplify-works/concepts/index.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ const schema = a.schema({
85
85
chat: a.belongsTo('Chat', 'chatId'),
86
86
chatId: a.id()
87
87
}),
88
-
});
88
+
}).authorization((allow) =>allow.owner());
89
89
```
90
90
91
91
On your app's frontend, you can use the `generateClient` function, which provides a typed client instance, making it easy to integrate CRUD (create, read, update, delete) operations for your models in your application code.
0 commit comments