mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 11:01:41 +00:00
permitir descripciones mas cortas
This commit is contained in:
parent
385d943a2c
commit
66ec526937
2 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ class Site < ApplicationRecord
|
|||
validates :design_id, presence: true
|
||||
validates_inclusion_of :status, in: %w[waiting enqueued building]
|
||||
validates_presence_of :title
|
||||
validates :description, length: { in: 50..160 }
|
||||
validates :description, length: { in: 10..160 }
|
||||
validate :deploy_local_presence
|
||||
validate :compatible_layouts, on: :update
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
%h2= f.label :description
|
||||
%p.lead= t('.help.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
|
||||
.invalid-feedback= site.errors.messages[:description].join(', ')
|
||||
%hr/
|
||||
|
|
Loading…
Reference in a new issue