Skip to content

Commit

Permalink
rename st->gui in account.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nikochiko committed Aug 8, 2024
1 parent e508a4e commit 066b7b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions routers/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def api_keys_route(request: Request):


@app.post("/orgs/")
@st.route
@gui.route
def orgs_route(request: Request):
with account_page_wrapper(request, AccountTabs.orgs):
orgs_tab(request)
Expand All @@ -161,7 +161,7 @@ def orgs_route(request: Request):


@app.post("/invitation/{org_slug}/{invite_id}/")
@st.route
@gui.route
def invitation_route(request: Request, org_slug: str, invite_id: str):
from routers.root import login

Expand Down

0 comments on commit 066b7b5

Please sign in to comment.