This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-01-15 05:01:33 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ApplicationExtension
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2017-05-18 18:11:23 -07:00
|
|
|
validates :website, url: true, if: :website?
|
2017-01-15 05:01:33 -08:00
|
|
|
end
|
|
|
|
end
|