/* * Copyright (C) 2022-present ScyllaDB */ /* * SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 */ #pragma once #include namespace seastar::httpd { class routes; } namespace auth { class service; } namespace api { struct http_context; void set_authorization_cache(http_context& ctx, seastar::httpd::routes& r, seastar::sharded &auth_service); void unset_authorization_cache(http_context& ctx, seastar::httpd::routes& r); }