Skip to content

Commit

Permalink
Drop cloudauthz routes
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed May 21, 2024
1 parent e22c92d commit 260dc9b
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions lib/galaxy/webapps/galaxy/buildapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,27 +365,6 @@ def populate_api_routes(webapp, app):
parent_resources=dict(member_name="page", collection_name="pages"),
)

webapp.mapper.connect("/api/cloud/authz/", action="index", controller="cloudauthz", conditions=dict(method=["GET"]))
webapp.mapper.connect(
"/api/cloud/authz/", action="create", controller="cloudauthz", conditions=dict(method=["POST"])
)

webapp.mapper.connect(
"delete_cloudauthz_item",
"/api/cloud/authz/{encoded_authz_id}",
action="delete",
controller="cloudauthz",
conditions=dict(method=["DELETE"]),
)

webapp.mapper.connect(
"upload_cloudauthz_item",
"/api/cloud/authz/{encoded_authz_id}",
action="update",
controller="cloudauthz",
conditions=dict(method=["PUT"]),
)

# =======================
# ====== TOOLS API ======
# =======================
Expand Down

0 comments on commit 260dc9b

Please sign in to comment.