mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-24 02:29:20 +01:00
1a8841f96e
Added verify_backend to load user_data for members. and removed method to generate UID as this is now done server-side. Added GetUsername function and a "token" param to room_member. Also added a username to ChatEntry, so that the username can be shown (along with nicknames) in the chat dialog.
19 lines
485 B
C++
19 lines
485 B
C++
// Copyright 2018 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "network/verify_user.h"
|
|
|
|
namespace Network::VerifyUser {
|
|
|
|
Backend::~Backend() = default;
|
|
|
|
NullBackend::~NullBackend() = default;
|
|
|
|
UserData NullBackend::LoadUserData([[maybe_unused]] const std::string& verify_UID,
|
|
[[maybe_unused]] const std::string& token) {
|
|
return {};
|
|
}
|
|
|
|
} // namespace Network::VerifyUser
|