metu.life/app/lib/application_extension.rb

9 lines
176 B

# frozen_string_literal: true
module ApplicationExtension
extend ActiveSupport::Concern
included do
validates :website, url: true, unless: 'website.blank?'
end
end