fix build
This commit is contained in:
parent
647f180cc6
commit
cdf31fc1bf
@ -12,6 +12,7 @@
|
||||
#include <nlohmann/json.hpp>
|
||||
#include <spdlog/spdlog.h>
|
||||
|
||||
|
||||
using namespace Wt::Auth;
|
||||
|
||||
template < typename Connection >
|
||||
|
||||
@ -59,5 +59,7 @@ AuthTokens & PgUser::authTokens() const {}
|
||||
|
||||
AuthIdentities &PgUser::authIdentities() const {}
|
||||
|
||||
AuthInfo & PgUser::authInfo() const {}
|
||||
|
||||
} // namespace eedb
|
||||
|
||||
|
||||
@ -29,5 +29,9 @@ class PgUser : public User {
|
||||
// User interface
|
||||
public:
|
||||
AuthIdentities &authIdentities() const override;
|
||||
|
||||
// User interface
|
||||
public:
|
||||
AuthInfo &authInfo() const override;
|
||||
};
|
||||
} // namespace eedb
|
||||
|
||||
@ -30,6 +30,10 @@ class UserMock : public eedb::User {
|
||||
void logout() override {}
|
||||
eedb::AuthIdentities & authIdentities() const {}
|
||||
int64_t _uid;
|
||||
|
||||
// User interface
|
||||
public:
|
||||
eedb::AuthInfo &authInfo() const override{}
|
||||
};
|
||||
|
||||
class PgAuthTokenTest : public DbTestBase< PgAuthTokenTest > {
|
||||
|
||||
@ -31,6 +31,10 @@ class UserMock : public eedb::User {
|
||||
void logout() override {}
|
||||
eedb::AuthIdentities & authIdentities() const {}
|
||||
int64_t _uid;
|
||||
|
||||
// User interface
|
||||
public:
|
||||
eedb::AuthInfo &authInfo() const override{}
|
||||
};
|
||||
} // namespace
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user