Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

accept any work slug with alphabet characters or a dash or underscore #3086

Merged
merged 2 commits into from
Apr 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/models/work.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Work < ApplicationRecord
after_create :alert_intercom

validates :title, presence: true, length: { minimum: 3, maximum: 255 }
validates :slug, uniqueness: { case_sensitive: true }, format: { with: /[[:alpha:]]/ }
validates :slug, uniqueness: { case_sensitive: true }, format: { with: /[-_[:alpha:]]/ }
validate :document_date_is_edtf

mount_uploader :picture, PictureUploader
Expand Down