Skip to content
Snippets Groups Projects
Unverified Commit 917d941b authored by Sébastien Gaya's avatar Sébastien Gaya
Browse files

cc

parent 0e18c514
No related branches found
No related tags found
No related merge requests found
......@@ -10,17 +10,23 @@ module Communication::Website::WithStyle
def load_style
@style = ''
if url.present?
load_style_from url
load_style_from "#{url}/fr" if @style.blank?
load_style_from "#{url}/en" if @style.blank?
end
load_style_from "https://example.osuny.org" if @style.blank?
load_style_from_website_url if url.present?
load_style_from_example
substitute_fonts_urls_in_style!
self.update_columns style: @style,
style_updated_at: Date.today
end
def load_style_from_website_url
load_style_from url
load_style_from "#{url}/fr" if @style.blank?
load_style_from "#{url}/en" if @style.blank?
end
def load_style_from_example
load_style_from "https://example.osuny.org" if @style.blank?
end
def load_style_from(url)
data = URI.open url
html = Nokogiri::HTML data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment