This commit is contained in:
Egor Matveev
2022-01-20 00:48:23 +03:00
parent 39a61ba1d6
commit a09ec5234a
10 changed files with 94 additions and 0 deletions

7
Main/views/SetView.py Normal file
View File

@@ -0,0 +1,7 @@
from SprintLib.BaseView import BaseView
class SetView(BaseView):
required_login = True
endpoint = 'set'
view_file = 'set.html'

View File

@@ -18,3 +18,4 @@ from Main.views.SolutionsView import SolutionsView
from Main.views.ChatView import ChatView
from Main.views.ChatWithView import ChatWithView
from Main.views.MessagesView import MessagesView
from Main.views.SetView import SetView