9 lines
170 B
Ruby
9 lines
170 B
Ruby
class DirectoryController < ApplicationController
|
|
# This controller just exists to avoid 404s and to have the ember app load up
|
|
def index
|
|
end
|
|
|
|
def show
|
|
end
|
|
end
|