12 lines
230 B
Ruby
12 lines
230 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class InitController < ApplicationController
|
|
|
|
# GET /init
|
|
def index
|
|
respond_to do |format|
|
|
format.html # index.html.erb
|
|
end
|
|
end
|
|
|
|
end
|