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