mirror of
https://github.com/miloszowi/everyone-mention-telegram-bot.git
synced 2025-09-17 20:08:25 +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')
|