Skip to content

Commit

Permalink
Docs: Fix Typo & Add New FAQ ✨(#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
yezz123 authored Oct 16, 2021
1 parent 1fad88b commit 3208704
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

## Describe the bug
Expand Down
12 changes: 12 additions & 0 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,18 @@ Managing the project during my Work was somehow Hard for me, cause as many know

I Use a Trello Board to Manage my Projects, and i use Trello Cards to Manage my Work, check it here [https://trello.com/b/0NNZMP8T/authx](https://trello.com/b/0NNZMP8T/authx).

## Supporting Other Database Provider & ORM?

Until now, AuthX support only MongoDB, but i will try to support other Database Provider and ORM in the future, and i will try to provide a way to integrate Piccolo ORM also in the future.

## How to Support Project?

You can also financially support the author (me) through <a href="https://paypal.me/yassertahiri?locale.x=en_US" class="external-link" target="_blank">Paypal sponsors</a>.

There you could buy me a [coffee ☕️](https://www.buymeacoffee.com/tahiri) to say thanks. 😄

And you can also become a Silver or Gold sponsor for AuthX. 🏅🎉

### Reference

I use The Following Reference to Get The package Done:
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
auth = Authentication()
router = APIRouter()


# Set up Pre-configured Routes
app.include_router(auth.auth_router, prefix="/api/users")
app.include_router(auth.social_router, prefix="/auth")
app.include_router(auth.password_router, prefix="/api/users")
Expand All @@ -29,7 +29,7 @@ def user_test(user: User = Depends(auth.get_authenticated_user)):
pass


#
# Set Admin User
@router.get("/admin", dependencies=[Depends(auth.admin_required)])
def admin_test():
pass

0 comments on commit 3208704

Please sign in to comment.