def get(self): about_page = AboutPage.get(1) return ok({'content': about_page.content})
def post(self, current_user): content = request.json['content'] about_page = AboutPage(id=1, content=content) about_page.put() return ok_msg('About page is updated.')