Move documentation into footer, not behind login

https://www.pivotaltracker.com/story/show/115775183
This commit is contained in:
Chris Hill-Scott
2016-03-18 16:25:43 +00:00
parent c40b9872a5
commit 2c3c802d5c
6 changed files with 51 additions and 18 deletions

View File

@@ -6,10 +6,9 @@ from app import api_key_api_client
from app.utils import user_has_permissions
@main.route("/services/<service_id>/documentation")
@login_required
def documentation(service_id):
return render_template('views/documentation.html', service_id=service_id)
@main.route("/documentation")
def documentation():
return render_template('views/documentation.html')
@main.route("/services/<service_id>/api-keys")