Skip to content

Commit 1b9c82f

Browse files
authored
Merge pull request #267 from benavlabs/fix-sqladmin-links
docs: fix SQLAdmin links (aminalaee.dev squatted) to smithyhq/sqladmin
2 parents cf4f10f + 6a25bfb commit 1b9c82f

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/user-guide/admin-panel/adding-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Adding your own models to the admin is straightforward, but there's one quirk to know upfront: the boilerplate's models use SQLAlchemy's `MappedAsDataclass`, which requires a special mixin to play nicely with SQLAdmin.
44

5-
For the full range of options, see the [SQLAdmin documentation](https://aminalaee.dev/sqladmin/).
5+
For the full range of options, see the [SQLAdmin documentation](https://github.com/smithyhq/sqladmin).
66

77
## The DataclassModelMixin
88

docs/user-guide/admin-panel/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Admin Panel Configuration
22

3-
The admin panel has a deliberately small surface area: it's a [SQLAdmin](https://aminalaee.dev/sqladmin/) instance gated by a username/password from environment variables. Configuration boils down to a handful of `.env` values.
3+
The admin panel has a deliberately small surface area: it's a [SQLAdmin](https://github.com/smithyhq/sqladmin) instance gated by a username/password from environment variables. Configuration boils down to a handful of `.env` values.
44

55
## Environment Variables
66

docs/user-guide/admin-panel/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Admin Panel
22

3-
The boilerplate ships a built-in admin panel powered by [SQLAdmin](https://aminalaee.dev/sqladmin/). It gives you a web interface for browsing and editing the database without writing custom CRUD endpoints.
3+
The boilerplate ships a built-in admin panel powered by [SQLAdmin](https://github.com/smithyhq/sqladmin). It gives you a web interface for browsing and editing the database without writing custom CRUD endpoints.
44

55
!!! tip "Building a full SaaS?"
66
The admin panel is part of the free foundation. **[FastroAI](https://fastro.ai)** bundles it with Stripe payments, entitlements, transactional email, a frontend, and AI agents - all wired together and production-ready. [Ship your SaaS faster →](https://fastro.ai)

docs/user-guide/admin-panel/user-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Build a small model (`AdminUser` with `username`, `hashed_password`, `is_active`
139139

140140
For larger orgs, mount the admin behind an SSO proxy (Authelia, Pomerium, AWS ALB with Cognito). The admin app trusts the proxy's authentication header and grants access on its presence.
141141

142-
None of these are wired up in the boilerplate — pick the one that fits your environment and implement it. The SQLAdmin docs cover [Authentication](https://aminalaee.dev/sqladmin/authentication/) extensions in detail.
142+
None of these are wired up in the boilerplate — pick the one that fits your environment and implement it. The SQLAdmin docs cover [Authentication](https://github.com/smithyhq/sqladmin) extensions in detail.
143143

144144
## Auditing Admin Activity
145145

docs/user-guide/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This guide covers all aspects of working with the FastAPI Boilerplate:
3333
- **[Permissions](authentication/permissions.md)** - Implement role-based access control
3434

3535
### Admin Panel
36-
Powered by [SQLAdmin](https://aminalaee.dev/sqladmin/) - a flexible admin interface generated from your SQLAlchemy models.
36+
Powered by [SQLAdmin](https://github.com/smithyhq/sqladmin) - a flexible admin interface generated from your SQLAlchemy models.
3737

3838
- **[Admin Panel Overview](admin-panel/index.md)** - Web-based database management interface
3939
- **[Configuration](admin-panel/configuration.md)** - Setup, session backends, and environment variables

0 commit comments

Comments
 (0)