zammad/app/controllers/user/after_auth_controller.rb
2026-01-02 15:41:09 +02:00

9 lines
261 B
Ruby

# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
class User::AfterAuthController < ApplicationController
prepend_before_action :authentication_check
def show
render json: Auth::AfterAuth.run(current_user, session)
end
end