This commit is contained in:
Miguel de la Cruz 2020-09-24 14:02:36 +02:00
parent 0e6678534e
commit 82dc46f787
2 changed files with 4 additions and 1 deletions

View file

@ -153,6 +153,9 @@ func (a *App) PublishNextInJira(dryRun bool) (bool, error) {
if err := a.Save(); err != nil {
return false, err
}
// ToDo: print here the newly created issue
return true, nil
}

View file

@ -22,7 +22,7 @@ func ReportCmd() *cobra.Command {
}
cmd.AddCommand(
UserReportCmd(),
UsersReportCmd(),
)
return cmd