summaryrefslogtreecommitdiffstats
path: root/ogcp/forms/action_forms.py
diff options
context:
space:
mode:
authorJavier Hernandez <jhernandez@soleta.eu>2024-01-11 13:36:23 +0100
committerOpenGnSys Support Team <soporte-og@soleta.eu>2024-01-11 13:36:23 +0100
commitb54203119320d63b8c6f1429b0b061035c4c8e0c (patch)
tree2cc371ea45f9fdc4c8b5a39657bbc5f124dfe025 /ogcp/forms/action_forms.py
parentcba7a0c1c617e1039055652318c11f309eda932f (diff)
views: add room to folder
Support adding a room to a folder
Diffstat (limited to 'ogcp/forms/action_forms.py')
-rw-r--r--ogcp/forms/action_forms.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ogcp/forms/action_forms.py b/ogcp/forms/action_forms.py
index c803b02..ed9825a 100644
--- a/ogcp/forms/action_forms.py
+++ b/ogcp/forms/action_forms.py
@@ -193,6 +193,7 @@ class RoomForm(FlaskForm):
validators=[InputRequired()])
gateway = StringField(label=_l('Gateway'),
validators=[InputRequired()])
+ folder_id = HiddenField()
submit = SubmitField(label=_l('Submit'))
class DeleteRoomForm(FlaskForm):