10 lines
136 B
Ruby
10 lines
136 B
Ruby
class FunController < ApplicationController
|
|
allow_unauthenticated_access
|
|
|
|
def index
|
|
end
|
|
def spirit
|
|
end
|
|
def show
|
|
end
|
|
end
|