-
Notifications
You must be signed in to change notification settings - Fork 1
/
keyboards.py
45 lines (42 loc) · 1.11 KB
/
keyboards.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from aiogram.types import ReplyKeyboardMarkup, KeyboardButton
set_up_path = ReplyKeyboardMarkup(
keyboard=[
[
KeyboardButton(text='Set up path'),
]
],
resize_keyboard=True,
one_time_keyboard=True
)
in_test_managing = ReplyKeyboardMarkup(
keyboard=[
[
KeyboardButton(text='Unmute failure notifications'),
KeyboardButton(text='Mute failure notifications')
],
[
KeyboardButton(text='Get only scheduled notifications'),
KeyboardButton(text='Get all notifications')
],
[
KeyboardButton(text='End testing')
]
],
resize_keyboard=True,
one_time_keyboard=False
)
out_test_managing = ReplyKeyboardMarkup(
keyboard=[
[
KeyboardButton(text='Reset path'),
KeyboardButton(text='Edit notifications period'),
KeyboardButton(text='Edit failure period')
],
[
KeyboardButton(text='Help'),
KeyboardButton(text='Start testing')
]
],
resize_keyboard=True,
one_time_keyboard=True
)