mirror of
https://github.com/yawaflua/SpCloudCore.git
synced 2025-12-09 20:19:35 +02:00
15 lines
184 B
C++
15 lines
184 B
C++
#include "../Models/User.cpp"
|
|
|
|
|
|
class AuthorizationService
|
|
{
|
|
|
|
public:
|
|
bool is_user_authorized(User user)
|
|
{
|
|
return true;//Todo implement logic for authorization processing
|
|
}
|
|
|
|
|
|
};
|