6
0
Ответвление 0
bastodon/app/lib/application_extension.rb

9 строки
165 Б
Ruby

# frozen_string_literal: true
module ApplicationExtension
extend ActiveSupport::Concern
included do
validates :website, url: true, if: :website?
end
end