Files
grecia/app/controllers/admin/poll/polls_controller.rb
2016-11-14 13:51:09 +01:00

16 lines
162 B
Ruby

class Admin::Poll::PollsController < Admin::BaseController
skip_authorization_check
def index
end
def show
end
def new
end
def edit
end
end