18 lines
425 B
C++
Executable File
18 lines
425 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 SmsLink : public WebsocketBasedAuth {
|
|
public:
|
|
SmsLink(std::string systemToken, std::string tid) : WebsocketBasedAuth(std::move(systemToken), std::move(tid), "SMS Link") {}
|
|
};
|
|
|
|
} // namespace rublon::method
|