1
0
mirror of https://github.com/writeas/writeas-cli synced 2025-07-26 23:08:16 +00:00

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

This commit is contained in:
Matt Baer 2019-09-20 14:00:32 -04:00
commit 5b1ae2cd83
2 changed files with 5 additions and 9 deletions

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{

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 ""
}