Skip to content

Commit

Permalink
Merge pull request #87 from bento-platform/fixes/info-endpoint-fixes
Browse files Browse the repository at this point in the history
info endpoints do not need permissions or request checking
  • Loading branch information
gsfk authored Apr 29, 2024
2 parents b82484d + 3cbd385 commit 9246543
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions bento_beacon/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,11 @@

@app.before_request
def before_request():
validate_request()
verify_permissions()
save_request_data()
init_response_data()
if request.blueprint != "info":
validate_request()
verify_permissions()
save_request_data()
init_response_data()


@app.errorhandler(Exception)
Expand Down

0 comments on commit 9246543

Please sign in to comment.