vita_app/app/controllers/public/newsletters_controller.rb
Nicolas Bally 1d3af87d4c initial
2016-04-28 10:07:08 +02:00

12 lines
184 B
Ruby
Executable File

# -*- encoding : utf-8 -*-
class Public::NewslettersController < ApplicationController
layout false
def show
@newsletter = Newsletter.find_by_slug(params[:id])
end
end