Goals
#13
Replies: 2 comments
|
We have the APIs to create goals and todos. Let me know if anything did not work @frustak . |
0 replies
|
@Glyphack I've added a simple validation for goal name in UI z.object({
name: z.string().min(1).max(100),
}); |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Problem
I want to add goals
Boundaries
goals does not need to have to-dos at first,
we can add them later in the planning page
support add, delete
Rough Idea
at the home page, we show the list of goals.
i can add a new goal by clicking the add new goal button.
an input will be shown which I can type the goal name.
after adding the goal, goal list will be updated.
a delete button exists on the right side of goal.
adding new tasks to goals are handled in planning page.
All reactions