diff options
author | m-milkin <m-milkin@yandex-team.com> | 2023-03-24 15:34:13 +0300 |
---|---|---|
committer | m-milkin <m-milkin@yandex-team.com> | 2023-03-24 15:34:13 +0300 |
commit | 387c914d75e04773da90dcf623982a47909c19d2 (patch) | |
tree | 2aee2c5f92c70eac1e34206307d910c8c360f585 /library/cpp/resource/resource.cpp | |
parent | f8d946ba7430c3864f0a97d42fa295d19ed40a3e (diff) | |
download | ydb-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.cpp | 4 |
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; |