From 400b6fe14a9cb7ac82d612eec9790599194ad6cf Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Fri, 20 Sep 2019 13:01:34 -0400 Subject: [PATCH] Remove wf claim command This isn't needed / used in WriteFreely. --- cmd/wf/main.go | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/cmd/wf/main.go b/cmd/wf/main.go index ef9d8f7..aa04c84 100644 --- a/cmd/wf/main.go +++ b/cmd/wf/main.go @@ -187,26 +187,6 @@ func main() { }, }, }, { - Name: "claim", - Usage: "Claim local unsynced posts", - 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{ - Name: "tor, t", - Usage: "Authenticate via Tor hidden service", - }, - cli.IntFlag{ - Name: "tor-port", - Usage: "Use a different port to connect to Tor", - Value: 9150, - }, - cli.BoolFlag{ - Name: "verbose, v", - Usage: "Make the operation more talkative", - }, - }, - }, { Name: "auth", Usage: "Authenticate with a WriteFreely instance", Action: cmdAuth,