Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fully Implement Nuxt UI to Replace Jinja Templates #120

Merged
merged 48 commits into from
Jun 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
69c8c59
add initial design for login page, add auth middleware for redirects,…
fisher60 Jun 12, 2024
c0c4a14
move abandonauth backend ui login to use new UI, add working UI butto…
fisher60 Jun 12, 2024
a24cd29
add dashboard layout with navbar, add logout logic
fisher60 Jun 13, 2024
ff3d514
add discord and github colors to login buttons
fisher60 Jun 14, 2024
32de26b
use custom button instead of daisy
fisher60 Jun 14, 2024
f69cd37
add component for links in navbar
fisher60 Jun 14, 2024
5969ca8
add abandontech logo to login screen
fisher60 Jun 14, 2024
6171712
add error message badges to login page
fisher60 Jun 14, 2024
0f57c48
minor style tweaks for navlinks and dashboard
fisher60 Jun 14, 2024
184e3ac
tweak navlink button sizes
fisher60 Jun 15, 2024
b72ae84
add username and user id to index page
fisher60 Jun 15, 2024
daa03bc
add developer application list page, add placeholder for developer ap…
fisher60 Jun 15, 2024
2746906
add developer application detail page list callback URIs, tweak dev a…
fisher60 Jun 15, 2024
4637d61
add cors config to abandon auth backend, configure cors rules for pro…
fisher60 Jun 15, 2024
4d77552
add deleting callback_uris on developer application
fisher60 Jun 15, 2024
47bbb0a
add create application UI, minor style tweaks.
fisher60 Jun 16, 2024
1e680a4
add create callback URI ui
fisher60 Jun 16, 2024
6bb51d0
add delete application UI
fisher60 Jun 16, 2024
d28764f
add reset token ui for developer app
fisher60 Jun 16, 2024
b225b29
minor style tweaks to dev app modals
fisher60 Jun 16, 2024
1c25435
run pre-commit to add missing newlines
fisher60 Jun 16, 2024
5ef09cb
use correct prop definitions for login button component
fisher60 Jun 16, 2024
fff4de3
use correct string typing for navlink props
fisher60 Jun 16, 2024
dc7b798
refactor new uri array creation to include new uri
fisher60 Jun 16, 2024
6dbfbf4
use 'URI instead of 'Uri' for user-facing references
fisher60 Jun 16, 2024
fea4bf8
use mono font for application token fields
fisher60 Jun 16, 2024
f15c90c
left align application detail page
fisher60 Jun 16, 2024
e694b50
fix typing on CopyString props, add some logical line breaks
fisher60 Jun 16, 2024
7211ae4
use shorthand for ternary expression
fisher60 Jun 16, 2024
dd88af2
change style on delete and reset token modals to use btn-error on del…
fisher60 Jun 17, 2024
212de0d
refactor entire project to mono-repo format
fisher60 Jun 17, 2024
af37f14
move pre-commit config to proper directory
fisher60 Jun 18, 2024
8f2dc8d
refactor file paths for infra and dev files
fisher60 Jun 18, 2024
f906ed8
Adjust workflows to use new mono repo structure
fisher60 Jun 18, 2024
71ad9e4
remove all UI logic from fastapi backend
fisher60 Jun 18, 2024
b8f7502
add whitespace to Dockerfile
fisher60 Jun 18, 2024
ce710be
fix syntax error in pull_request.yml, add whitespace to build_fronten…
fisher60 Jun 18, 2024
9e35e0b
only run pre-commit in backend files in workflow
fisher60 Jun 18, 2024
356eb6d
ignore trailing comma rule in ruff
fisher60 Jun 18, 2024
9b56670
auto format imports with ruff
fisher60 Jun 18, 2024
4728421
specify sub dir for pre-commit to run
fisher60 Jun 18, 2024
9345990
remove Dockerfile path config from build_api workflow
fisher60 Jun 18, 2024
aecc094
Bump node version in Dockerfile to fix github workflow build error
fisher60 Jun 18, 2024
ec20b38
move .gitignore to correct location
fisher60 Jun 18, 2024
5771ac5
remove .idea from repo
fisher60 Jun 18, 2024
5adcb1c
remove unused base url in services
fisher60 Jun 18, 2024
63ead35
add dockerignore for .env in website
fisher60 Jun 18, 2024
760008f
remove redundant `environment` key, use key/value syntax instead of l…
fisher60 Jun 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove unused base url in services
  • Loading branch information
fisher60 committed Jun 18, 2024
commit 5adcb1c56dc1b4f61c024d6f479ca42325038dfd
2 changes: 0 additions & 2 deletions src/api/abandonauth/dependencies/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
)
from abandonauth.models.auth import JwtClaimsDataDto, JwtDto, ScopeEnum

BASE_URL = "http:https://localhost"


async def identify_user(user_id: str) -> User:
"""Get the user with the given ID or raise an HTTP 404."""
Expand Down