Files
Dalan/app/api/v2/management/exceptions/authentication.rb
2026-08-13 19:56:46 +03:30

14 lines
240 B
Ruby

# frozen_string_literal: true
module API::V2
module Management
module Exceptions
class Authentication < Base
def status
@options.fetch(:status, 401)
end
end
end
end
end