First version of Polls Controller

This commit is contained in:
kikito
2016-10-31 14:13:56 +01:00
parent 85aba10798
commit 3eca3faacd
6 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
class PollsController < ApplicationController
load_and_authorize_resource
def index
end
def show
end
end