62 lines
1.3 KiB
Ruby
62 lines
1.3 KiB
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class TranslationsController < ApplicationController
|
|
prepend_before_action -> { authentication_check && authorize! }, except: [:lang]
|
|
|
|
# GET /translations/lang/:locale
|
|
def lang
|
|
render json: Translation.lang(params[:locale])
|
|
end
|
|
|
|
# PUT /translations/push
|
|
def push
|
|
start = Time.zone.now
|
|
Translation.push(params[:locale])
|
|
if start > Time.zone.now - 4.seconds
|
|
sleep 3
|
|
end
|
|
render json: { message: 'ok' }, status: :ok
|
|
end
|
|
|
|
# POST /translations/sync/:locale
|
|
def sync
|
|
Translation.load(params[:locale])
|
|
render json: { message: 'ok' }, status: :ok
|
|
end
|
|
|
|
# POST /translations/reset
|
|
def reset
|
|
Translation.reset(params[:locale])
|
|
render json: { message: 'ok' }, status: :ok
|
|
end
|
|
|
|
# GET /translations/admin/lang/:locale
|
|
def admin
|
|
render json: Translation.lang(params[:locale], true)
|
|
end
|
|
|
|
# GET /translations
|
|
def index
|
|
model_index_render(Translation, params)
|
|
end
|
|
|
|
# GET /translations/1
|
|
def show
|
|
model_show_render(Translation, params)
|
|
end
|
|
|
|
# POST /translations
|
|
def create
|
|
model_create_render(Translation, params)
|
|
end
|
|
|
|
# PUT /translations/1
|
|
def update
|
|
model_update_render(Translation, params)
|
|
end
|
|
|
|
# DELETE /translations/1
|
|
def destroy
|
|
model_destroy_render(Translation, params)
|
|
end
|
|
end
|