init_controller.rb 153 B

12345678910
  1. class InitController < ApplicationController
  2. # GET /init
  3. def index
  4. respond_to do |format|
  5. format.html # index.html.erb
  6. end
  7. end
  8. end