Skip to content

Instantly share code, notes, and snippets.

@marcelolebre
Created April 30, 2017 12:00
Show Gist options
  • Save marcelolebre/5011733bfd6ba231c3456deacc667ffb to your computer and use it in GitHub Desktop.
Save marcelolebre/5011733bfd6ba231c3456deacc667ffb to your computer and use it in GitHub Desktop.
@bp.route('/create/', methods=['POST'], endpoint='create')
def create():
form = AppForm(request.form)
name = form.name.data
description = form.description.data
app = AppHandler.create(name, description)
return redirect(url_for('app.show', app_id=app.id), code=301)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment