mirror of
https://github.com/miloszowi/everyone-mention-telegram-bot.git
synced 2025-05-20 09:14:07 +00:00
11 lines
293 B
Python
11 lines
293 B
Python
from config.envs import BANNED_USERS
|
|
from exception.actionNotAllowedException import ActionNotAllowedException
|
|
|
|
|
|
class AccessValidator:
|
|
|
|
@staticmethod
|
|
def validate(user_id: str) -> None:
|
|
if user_id in BANNED_USERS:
|
|
raise ActionNotAllowedException('User is banned')
|