mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
19 lines
179 B
Ruby
19 lines
179 B
Ruby
class AdminController < ApplicationController
|
|
layout 'admin'
|
|
|
|
def dashboard
|
|
end
|
|
|
|
def universes
|
|
end
|
|
|
|
def characters
|
|
end
|
|
|
|
def locations
|
|
end
|
|
|
|
def items
|
|
end
|
|
end
|