Remove ckeditor

Remove tinymce
Begin migrate to mithril.js
This commit is contained in:
2023-02-18 07:35:06 +03:00
parent 7f4130fe19
commit 024d7fb10d
434 changed files with 822 additions and 25765 deletions

View File

@@ -1,6 +1,5 @@
__author__ = 'RemiZOffAlex'
__email__ = 'remizoffalex@mail.ru'
__url__ = 'https://remizoffalex.ru/'
import string
@@ -10,7 +9,7 @@ from . import jsonrpc
from .. import app, lib, models
@jsonrpc.method('login')
@jsonrpc.method('auth.login')
def login(username: str, password: str) -> bool:
user = models.db_session.query(
models.User
@@ -29,7 +28,7 @@ def login(username: str, password: str) -> bool:
return True
@jsonrpc.method('login.register')
@jsonrpc.method('auth.register')
def login_register(username: str, password: str) -> bool:
"""Регистрация
"""