mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 21:36:21 +00:00
Merge branch 'shorter-description' into 'rails'
permitir descripciones mas cortas See merge request sutty/sutty!70
This commit is contained in:
commit
e9a9ec0364
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