diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-23 14:07:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-23 14:07:04 +0100 |
commit | 555c4e11baf58401c1bdd915e4ecef679e6ae514 (patch) | |
tree | db7f30a6828f4df45c7dae6c387aef8e25b2eb5d /app/views/admin | |
parent | 55a9658ad8552804c7c585df12d46c391b84dd94 (diff) |
Add validations to admin settings (#10348)
* Add validations to admin settings - Validate correct HTML markup - Validate presence of contact username & e-mail - Validate that all usernames are valid - Validate that enums have expected values * Fix code style issue * Fix tests
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/settings/edit.html.haml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/admin/settings/edit.html.haml b/app/views/admin/settings/edit.html.haml index d9b4bf01b..1c2c00f10 100644 --- a/app/views/admin/settings/edit.html.haml +++ b/app/views/admin/settings/edit.html.haml @@ -2,6 +2,7 @@ = t('admin.settings.title') = simple_form_for @admin_settings, url: admin_settings_path, html: { method: :patch } do |f| + = render 'shared/error_messages', object: @admin_settings .fields-group = f.input :site_title, wrapper: :with_label, label: t('admin.settings.site_title') |