11 lines
153 B
Ruby
11 lines
153 B
Ruby
|
class InitController < ApplicationController
|
||
|
|
||
|
# GET /init
|
||
|
def index
|
||
|
respond_to do |format|
|
||
|
format.html # index.html.erb
|
||
|
end
|
||
|
end
|
||
|
|
||
|
end
|