Files
nairobi/app/controllers/polls_controller.rb
2016-10-31 14:13:56 +01:00

14 lines
121 B
Ruby

class PollsController < ApplicationController
load_and_authorize_resource
def index
end
def show
end
end