mirror of
https://github.com/miloszowi/everyone-mention-telegram-bot.git
synced 2025-05-20 17:24:06 +00:00
11 lines
300 B
Python
11 lines
300 B
Python
|
from config.credentials 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('You are banned')
|