mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
housekeep: TU rename - code changes
Renaming of symbols. Functions, variables, values, DB values, etc. Basically everything that is not user-facing. This only covers "Trusted User" things: tests, comments, etc. will covered in a following commit.
This commit is contained in:
parent
7466e96449
commit
1702075875
34 changed files with 265 additions and 203 deletions
|
@ -71,7 +71,7 @@ class AnonymousUser:
|
|||
return False
|
||||
|
||||
@staticmethod
|
||||
def is_trusted_user():
|
||||
def is_package_maintainer():
|
||||
return False
|
||||
|
||||
@staticmethod
|
||||
|
@ -205,7 +205,7 @@ def account_type_required(one_of: set):
|
|||
|
||||
@router.get('/some_route')
|
||||
@auth_required(True)
|
||||
@account_type_required({"Trusted User", "Trusted User & Developer"})
|
||||
@account_type_required({"Package Maintainer", "Package Maintainer & Developer"})
|
||||
async def some_route(request: fastapi.Request):
|
||||
return Response()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue