diff options
Diffstat (limited to '')
| -rw-r--r-- | src/network/verify_user.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/network/verify_user.h b/src/network/verify_user.h index 5c3852d4a..ddae67e99 100644 --- a/src/network/verify_user.h +++ b/src/network/verify_user.h | |||
| @@ -25,11 +25,11 @@ public: | |||
| 25 | 25 | ||
| 26 | /** | 26 | /** |
| 27 | * Verifies the given token and loads the information into a UserData struct. | 27 | * Verifies the given token and loads the information into a UserData struct. |
| 28 | * @param verify_UID A GUID that may be used for verification. | 28 | * @param verify_uid A GUID that may be used for verification. |
| 29 | * @param token A token that contains user data and verification data. The format and content is | 29 | * @param token A token that contains user data and verification data. The format and content is |
| 30 | * decided by backends. | 30 | * decided by backends. |
| 31 | */ | 31 | */ |
| 32 | virtual UserData LoadUserData(const std::string& verify_UID, const std::string& token) = 0; | 32 | virtual UserData LoadUserData(const std::string& verify_uid, const std::string& token) = 0; |
| 33 | }; | 33 | }; |
| 34 | 34 | ||
| 35 | /** | 35 | /** |
| @@ -40,7 +40,7 @@ class NullBackend final : public Backend { | |||
| 40 | public: | 40 | public: |
| 41 | ~NullBackend(); | 41 | ~NullBackend(); |
| 42 | 42 | ||
| 43 | UserData LoadUserData(const std::string& verify_UID, const std::string& token) override; | 43 | UserData LoadUserData(const std::string& verify_uid, const std::string& token) override; |
| 44 | }; | 44 | }; |
| 45 | 45 | ||
| 46 | } // namespace Network::VerifyUser | 46 | } // namespace Network::VerifyUser |