Replaced base64 loading of images with blob, small fixes

This commit is contained in:
2022-09-04 00:11:11 +02:00
parent 95f921554b
commit d4ac3db189
7 changed files with 23 additions and 54 deletions

View File

@@ -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;