From c1d725ed34a95159d6bea0815bcd3357f4505e65 Mon Sep 17 00:00:00 2001 From: crapStone Date: Thu, 1 Oct 2020 03:35:03 +0000 Subject: [PATCH] Added a shorthand for notifications (#209) Added a shorthand for notifications Reviewed-on: https://gitea.com/gitea/tea/pulls/209 Reviewed-by: 6543 <6543@noreply.gitea.io> Reviewed-by: Lunny Xiao --- cmd/notifications.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/notifications.go b/cmd/notifications.go index 2aefb91..fd32af7 100644 --- a/cmd/notifications.go +++ b/cmd/notifications.go @@ -19,6 +19,7 @@ import ( // CmdNotifications is the main command to operate with notifications var CmdNotifications = cli.Command{ Name: "notifications", + Aliases: []string{"notif"}, Usage: "Show notifications", Description: "Show notifications, by default based of the current repo and unread one", Action: runNotifications,