Browse Source

Merge branch 'T672-accounts' of github.com:writeas/writeas-cli into T672-accounts

pull/44/head
Matt Baer 4 years ago
parent
commit
5b1ae2cd83
2 changed files with 5 additions and 9 deletions
  1. +5
    -5
      cmd/wf/main.go
  2. +0
    -4
      config/options.go

+ 5
- 5
cmd/wf/main.go View File

@@ -79,7 +79,7 @@ func main() {
{
Name: "delete",
Usage: "Delete a post",
Action: requireAuth(commands.CmdDelete, "delete"),
Action: requireAuth(commands.CmdDelete, "delete a post"),
Flags: []cli.Flag{
cli.BoolFlag{
Name: "tor, t",
@@ -99,7 +99,7 @@ func main() {
{
Name: "update",
Usage: "Update (overwrite) a post",
Action: requireAuth(commands.CmdUpdate, "update"),
Action: requireAuth(commands.CmdUpdate, "update a post"),
Flags: []cli.Flag{
cli.BoolFlag{
Name: "tor, t",
@@ -148,7 +148,7 @@ func main() {
Name: "posts",
Usage: "List all of your posts",
Description: "This will list only local posts.",
Action: requireAuth(commands.CmdListPosts, "posts"),
Action: requireAuth(commands.CmdListPosts, "view posts"),
Flags: []cli.Flag{
cli.BoolFlag{
Name: "id",
@@ -170,7 +170,7 @@ func main() {
}, {
Name: "blogs",
Usage: "List blogs",
Action: requireAuth(commands.CmdCollections, "blogs"),
Action: requireAuth(commands.CmdCollections, "view blogs"),
Flags: []cli.Flag{
cli.BoolFlag{
Name: "tor, t",
@@ -189,7 +189,7 @@ func main() {
}, {
Name: "claim",
Usage: "Claim local unsynced posts",
Action: requireAuth(commands.CmdClaim, "claim"),
Action: requireAuth(commands.CmdClaim, "claim unsynced posts"),
Description: "This will claim any unsynced posts local to this machine. To see which posts these are run: wf posts.",
Flags: []cli.Flag{
cli.BoolFlag{


+ 0
- 4
config/options.go View File

@@ -79,10 +79,6 @@ func Collection(c *cli.Context) string {
if coll := c.String("b"); coll != "" {
return coll
}
u, _ := LoadUser(c)
if u != nil {
return u.User.Username
}
return ""
}



Loading…
Cancel
Save