aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/resource/resource.cpp
diff options
context:
space:
mode:
authorm-milkin <m-milkin@yandex-team.com>2023-03-24 15:34:13 +0300
committerm-milkin <m-milkin@yandex-team.com>2023-03-24 15:34:13 +0300
commit387c914d75e04773da90dcf623982a47909c19d2 (patch)
tree2aee2c5f92c70eac1e34206307d910c8c360f585 /library/cpp/resource/resource.cpp
parentf8d946ba7430c3864f0a97d42fa295d19ed40a3e (diff)
downloadydb-387c914d75e04773da90dcf623982a47909c19d2.tar.gz
Filter searcher props by black list. Add NResource::Has()
Diffstat (limited to 'library/cpp/resource/resource.cpp')
-rw-r--r--library/cpp/resource/resource.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/cpp/resource/resource.cpp b/library/cpp/resource/resource.cpp
index cc20f847a5f..f21c629d187 100644
--- a/library/cpp/resource/resource.cpp
+++ b/library/cpp/resource/resource.cpp
@@ -30,6 +30,10 @@ void NResource::FindMatch(const TStringBuf subkey, TResources* out) {
CommonStore()->FindMatch(subkey, m);
}
+bool NResource::Has(const TStringBuf key) {
+ return CommonStore()->Has(key);
+}
+
TString NResource::Find(const TStringBuf key) {
TString ret;