mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 23:46:21 +00:00
Merge branch 'rails' of 0xacab.org:sutty/sutty into rails
This commit is contained in:
commit
edcb7c9554
2 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ class Site < ApplicationRecord
|
||||||
validates :design_id, presence: true
|
validates :design_id, presence: true
|
||||||
validates_inclusion_of :status, in: %w[waiting enqueued building]
|
validates_inclusion_of :status, in: %w[waiting enqueued building]
|
||||||
validates_presence_of :title
|
validates_presence_of :title
|
||||||
validates :description, length: { in: 50..160 }
|
validates :description, length: { in: 10..160 }
|
||||||
validate :deploy_local_presence
|
validate :deploy_local_presence
|
||||||
validate :compatible_layouts, on: :update
|
validate :compatible_layouts, on: :update
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
%h2= f.label :description
|
%h2= f.label :description
|
||||||
%p.lead= t('.help.description')
|
%p.lead= t('.help.description')
|
||||||
= f.text_area :description, class: form_control(site, :description),
|
= f.text_area :description, class: form_control(site, :description),
|
||||||
maxlength: 160, minlength: 50, required: true
|
maxlength: 160, minlength: 10, required: true
|
||||||
- if invalid? site, :description
|
- if invalid? site, :description
|
||||||
.invalid-feedback= site.errors.messages[:description].join(', ')
|
.invalid-feedback= site.errors.messages[:description].join(', ')
|
||||||
%hr/
|
%hr/
|
||||||
|
|
Loading…
Reference in a new issue