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
{{ message }}
This repository has been archived by the owner on Mar 19, 2022. It is now read-only.
We have an ancient (~6 months) Flutter client that @sboodman and I wrote which implements a pretty nice little TODO list.
It was written against the old Replicant v1 design.
We want to update this to be a sample for Replicache. In order to do that, we need a backend that implements the features required by the client.
I'm thinking:
The backend is a simple JSON API, with some kind of authentication (google? email? what's easiest) having the following features:
/list/create() => listID
/list/list() => []TodoList
/list/share(emailAddress)
/list/delete(listID)
/todo/create(listID, name, description, position, done) => todoID
/todo/list(listID)
/todo/complete(todoID, done)
/todo/reorder(id, position)
/todo/delete(id)
The text was updated successfully, but these errors were encountered: