-
For JS backend, create a table (TodoItem) and set the
READpermission to"Authenticated User only". -
For .NET backend, set
AuthorizationLevel.UserinTodoItemControllerand publish the service:
// GET tables/TodoItem
[AuthorizeLevel(AuthorizationLevel.User)]
public IQueryable GetAllTodoItems()
