diff options
author | Javier Hernandez <jhernandez@soleta.eu> | 2024-01-11 13:36:23 +0100 |
---|---|---|
committer | OpenGnSys Support Team <soporte-og@soleta.eu> | 2024-01-11 13:36:23 +0100 |
commit | b54203119320d63b8c6f1429b0b061035c4c8e0c (patch) | |
tree | 2cc371ea45f9fdc4c8b5a39657bbc5f124dfe025 /ogcp/forms | |
parent | cba7a0c1c617e1039055652318c11f309eda932f (diff) |
views: add room to folder
Support adding a room to a folder
Diffstat (limited to 'ogcp/forms')
-rw-r--r-- | ogcp/forms/action_forms.py | 1 |
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): |