18 lines
423 B
C++
Executable File
18 lines
423 B
C++
Executable File
#pragma once
|
|
|
|
#include <tl/expected.hpp>
|
|
|
|
#include <rublon/authentication_step_interface.hpp>
|
|
#include <rublon/pam_action.hpp>
|
|
|
|
#include <rublon/method/websocket_based_auth.hpp>
|
|
|
|
namespace rublon::method {
|
|
|
|
class EMAIL : public WebsocketBasedAuth {
|
|
public:
|
|
EMAIL(std::string systemToken, std::string tid) : WebsocketBasedAuth(std::move(systemToken), std::move(tid), "Email Link") {}
|
|
};
|
|
|
|
} // namespace rublon::method
|