identity-vault/app/controllers/backend/no_auth_controller.rb
2025-09-02 13:53:47 -04:00

5 lines
117 B
Ruby

module Backend
class NoAuthController < ApplicationController
skip_before_action :authenticate_user!
end
end