15 lines
173 B
Ruby
15 lines
173 B
Ruby
class Officing::ResultsController < Officing::BaseController
|
|
layout 'admin'
|
|
|
|
before_action :authenticate_user!
|
|
|
|
def index
|
|
end
|
|
|
|
def show
|
|
end
|
|
|
|
def new
|
|
end
|
|
|
|
end |