feat: Introduce company name on event description

This commit is contained in:
kbe
2025-08-28 18:17:36 +02:00
parent 4e2445198f
commit 7cdb9f468c
6 changed files with 35 additions and 23 deletions

View File

@@ -26,4 +26,5 @@ class User < ApplicationRecord
# Validations
validates :last_name, length: { minimum: 3, maximum: 12, allow_blank: true }
validates :first_name, length: { minimum: 3, maximum: 12, allow_blank: true }
validates :company_name, length: { minimum: 3, maximum: 12, allow_blank: true }
end