Class: Effective::BannerAdsController

Inherits:
ApplicationController
  • Object
show all
Includes:
CrudController
Defined in:
app/controllers/effective/banner_ads_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



5
6
7
8
9
10
11
# File 'app/controllers/effective/banner_ads_controller.rb', line 5

def show
  @banner_ad = Effective::BannerAd.find_by!(slug: params[:slug])

  authorize! :show, @banner_ad

  redirect_to @banner_ad.url, allow_other_host: true
end