2019-11-14 14:21:53 -06:00
|
|
|
class WidgetController < ApplicationController
|
|
|
|
def v2
|
2019-11-14 16:10:48 -06:00
|
|
|
expires_in 10.minutes
|
|
|
|
head :found, location: helpers.asset_pack_url("donate-button-v2.js"), content_type: "application/javascript"
|
2019-11-14 14:21:53 -06:00
|
|
|
end
|
2019-11-15 16:28:55 -06:00
|
|
|
|
|
|
|
def i18n
|
|
|
|
head :found, location: helpers.asset_pack_url("i18n.js"), content_type: "application/javascript"
|
|
|
|
end
|
2019-11-27 17:05:38 -06:00
|
|
|
|
|
|
|
def v1_css
|
|
|
|
expires_in 10.minutes
|
|
|
|
head :found, location: helpers.stylesheet_url("widget/donate-button.css"), content_type: "text/css"
|
|
|
|
end
|
|
|
|
|
|
|
|
def v2_css
|
|
|
|
expires_in 10.minutes
|
|
|
|
head :found, location: helpers.stylesheet_url("widget/donate-button-v2.css"), content_type: "text/css"
|
|
|
|
end
|
2019-11-14 14:21:53 -06:00
|
|
|
end
|