init: Added 'summary' command

This commit is contained in:
Paul Beckingham 2016-04-23 01:17:19 -04:00
parent 65665a32cb
commit d45dd034ae

View file

@ -254,6 +254,7 @@ int dispatchCommand (
else if (command == "month") status = CmdReportMonth (cli, rules, database ); else if (command == "month") status = CmdReportMonth (cli, rules, database );
else if (command == "start") status = CmdStart (cli, rules, database ); else if (command == "start") status = CmdStart (cli, rules, database );
else if (command == "stop") status = CmdStop (cli, rules, database ); else if (command == "stop") status = CmdStop (cli, rules, database );
else if (command == "summary") status = CmdReportSummary (cli, rules, database );
else if (command == "tags") status = CmdTags ( rules, database ); else if (command == "tags") status = CmdTags ( rules, database );
else if (command == "track") status = CmdTrack (cli, rules, database ); else if (command == "track") status = CmdTrack (cli, rules, database );
else if (command == "undo") status = CmdUndo ( ); else if (command == "undo") status = CmdUndo ( );