diff --git a/cmd/wf/main.go b/cmd/wf/main.go index aa04c84..80e2f4d 100644 --- a/cmd/wf/main.go +++ b/cmd/wf/main.go @@ -145,26 +145,21 @@ func main() { }, }, { - Name: "posts", - Usage: "List all of your posts", - Description: "This will list only local posts.", - Action: requireAuth(commands.CmdListPosts, "view posts"), + Name: "posts", + Usage: "List draft posts", + Action: requireAuth(commands.CmdListPosts, "view posts"), Flags: []cli.Flag{ cli.BoolFlag{ Name: "id", Usage: "Show list with post IDs (default)", }, cli.BoolFlag{ - Name: "md", - Usage: "Use with --url to return URLs with Markdown enabled", - }, - cli.BoolFlag{ Name: "url", Usage: "Show list with URLs", }, cli.BoolFlag{ Name: "verbose, v", - Usage: "Show verbose post listing, including Edit Tokens", + Usage: "Show verbose post listing", }, }, }, {