diff --git a/src/cpp/model/table/User.h b/src/cpp/model/table/User.h index d9f1bd10f..c211128cf 100644 --- a/src/cpp/model/table/User.h +++ b/src/cpp/model/table/User.h @@ -67,7 +67,8 @@ namespace model { inline void setLastName(const std::string& last_name) { mLastName = last_name; } inline void setPasswordHashed(const Poco::UInt64& passwordHashed) { mPasswordHashed = passwordHashed; } void setPublicKey(const unsigned char* publicKey); - // copy data, didn't move memory bin + //! \brief set encrypted private key + //! \param privateKey copy data, didn't move memory bin void setPrivateKey(const MemoryBin* privateKey); inline void setEmailChecked(bool emailChecked) { mEmailChecked = emailChecked; } inline void setLanguageKey(const std::string& languageKey) { mLanguageKey = languageKey; }