Files
grecia/app/controllers/dashboard/poster_controller.rb
Juan Salvador Pérez García 6cc1ddb9af Fixes #231
Implements a poster feature for the proposals dashboard
2018-07-31 12:50:25 +02:00

17 lines
311 B
Ruby

class Dashboard::PosterController < Dashboard::BaseController
def index
authorize! :manage_poster, proposal
respond_to do |format|
format.html
format.pdf do
render pdf: 'poster', page_size: 'A3'
end
end
end
def new
authorize! :manage_poster, proposal
end
end