def api_delete_blog(request, *, id): ''' ????????. ''' check_admin(request) blog = await Blog.find(id) await blog.remove() return dict(id = id)