From 01c93d65e92821d9ea7cbb80d14fd56579bf98a5 Mon Sep 17 00:00:00 2001 From: Quentin Smith Date: Sun, 27 May 2018 03:36:13 -0400 Subject: [PATCH] Add "renumber" to the list of valid commands. --- code/controls.py | 2 +- debian/changelog | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/code/controls.py b/code/controls.py index 0889d4c..c9193cb 100644 --- a/code/controls.py +++ b/code/controls.py @@ -229,7 +229,7 @@ def commandResult(username, state, command_name, machine_id, fields): cdrom = fields.get('cdrom') or None if cdrom is not None and not CDROM.query.filter_by(cdrom_id=cdrom).one(): raise CodeError("Invalid cdrom type '%s'" % cdrom) - if action not in "reboot create destroy shutdown delete".split(" "): + if action not in "reboot create destroy shutdown delete renumber".split(" "): raise CodeError("Invalid action '%s'" % action) if action == 'reboot': if cdrom is not None: diff --git a/debian/changelog b/debian/changelog index a0957b5..0f7e406 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +invirt-web (0.1.51) unstable; urgency=low + + * Add "renumber" to the list of valid commands. + + -- Quentin Smith Sun, 27 May 2018 03:35:56 -0400 + invirt-web (0.1.50) unstable; urgency=low * Show "renumber" button if user can self-service renumber. -- 1.7.9.5