Replaced base64 loading of images with blob, small fixes
This commit is contained in:
@@ -22,9 +22,9 @@ namespace dto {
|
||||
|
||||
namespace Responses {
|
||||
struct GetUsersEntry {
|
||||
GetUsersEntry(int id, bool gitlab, bool tfa, std::string name, db::UserRole role)
|
||||
GetUsersEntry(uint64_t id, bool gitlab, bool tfa, std::string name, db::UserRole role)
|
||||
: id(id), gitlab(gitlab), tfa(tfa), name(std::move(name)), role(role) {}
|
||||
int id;
|
||||
uint64_t id;
|
||||
bool gitlab, tfa;
|
||||
std::string name;
|
||||
db::UserRole role;
|
||||
|
||||
Reference in New Issue
Block a user