diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-11-06 17:13:51 +0100 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-11-06 19:40:19 +0100 |
commit | 85c4ea76b9a3193dd338bca5c571b84bebf6b38c (patch) | |
tree | 123361b6de21a0326293ae0b9c5c5f9782583c96 /indra/newview/llavatarpropertiesprocessor.h | |
parent | 62f864c04539b0db7069d75f471778b9b77d5b9e (diff) |
SL-20163 Allow residents to hide exact join date on profiles (check server support)
Diffstat (limited to 'indra/newview/llavatarpropertiesprocessor.h')
-rw-r--r-- | indra/newview/llavatarpropertiesprocessor.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llavatarpropertiesprocessor.h b/indra/newview/llavatarpropertiesprocessor.h index 1bf07704a9..99ed110487 100644 --- a/indra/newview/llavatarpropertiesprocessor.h +++ b/indra/newview/llavatarpropertiesprocessor.h @@ -217,6 +217,8 @@ public: void sendClassifiedDelete(const LLUUID& classified_id); + bool isHideAgeSupportedByServer() { return mIsHideAgeSupportedByServer; } + // Returns translated, human readable string for account type, such // as "Resident" or "Linden Employee". Used for profiles, inspectors. static std::string accountType(const LLAvatarData* avatar_data); @@ -274,6 +276,9 @@ protected: // Map avatar_id+request_type -> U32 timestamp in seconds typedef std::map< std::pair<LLUUID, EAvatarProcessorType>, U32> timestamp_map_t; timestamp_map_t mRequestTimestamps; + + // Is returned by isHideAgeSupportedByServer() + bool mIsHideAgeSupportedByServer { false }; }; #endif // LL_LLAVATARPROPERTIESPROCESSOR_H |