mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
10 lines
153 B
Ruby
10 lines
153 B
Ruby
class InitController < ApplicationController
|
|
|
|
# GET /init
|
|
def index
|
|
respond_to do |format|
|
|
format.html # index.html.erb
|
|
end
|
|
end
|
|
|
|
end
|