Merge pull request #561 from GSA/notify-552

notify-552 remove option to use priority queue from UI
This commit is contained in:
Kenneth Kehl
2023-06-28 13:46:55 -07:00
committed by GitHub
2 changed files with 2 additions and 10 deletions

View File

@@ -1234,15 +1234,7 @@ class BaseTemplateForm(StripWhitespaceForm):
NoCommasInPlaceHolders()
]
)
process_type = GovukRadiosField(
"Use priority queue?",
choices=[
('priority', 'Yes'),
('normal', 'No'),
],
thing='yes or no',
default='normal'
)
process_type = HiddenField('normal')
class SMSTemplateForm(BaseTemplateForm):