14 lines
121 B
Ruby
14 lines
121 B
Ruby
class PollsController < ApplicationController
|
|
|
|
load_and_authorize_resource
|
|
|
|
def index
|
|
|
|
end
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
end
|