Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 - 2025 Grant Ramsay
Copyright (c) 2022 - 2026 Grant Ramsay

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion app/config/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"url": "https://www.gnramsay.com",
},
email="[email protected]",
year="2022-2025",
year="2022-2026",
)
4 changes: 2 additions & 2 deletions docs/customization/meta.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ custom_metadata = MetadataBase(
"url": "https://www.gnramsay.com",
},
email="[email protected]",
year="2024",
year="2026",
)
```

Expand Down Expand Up @@ -71,7 +71,7 @@ License : MIT
Author : Grant Ramsay (seapagan)
Email : [email protected]
Website : https://www.gnramsay.com
(C) Year : 2024
(C) Year : 2026

Is this Correct? [Y/n]:

Expand Down
13 changes: 7 additions & 6 deletions docs/reference/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ Returns all API keys for the authenticated user.
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "My API Key",
"created_at": "2024-01-01T12:00:00Z",
"created_at": "2026-01-01T12:00:00Z",
"is_active": true,
"scopes": ["read", "write"]
}
Expand Down Expand Up @@ -647,7 +647,7 @@ Creates a new API key for the authenticated user.
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "My API Key",
"key": "pk_abcdef123456...",
"created_at": "2024-01-01T12:00:00Z",
"created_at": "2026-01-01T12:00:00Z",
"is_active": true,
"scopes": ["read", "write"]
}
Expand Down Expand Up @@ -679,7 +679,7 @@ Get details of a specific API key by ID.
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "My API Key",
"created_at": "2024-01-01T12:00:00Z",
"created_at": "2026-01-01T12:00:00Z",
"is_active": true,
"scopes": ["read", "write"]
}
Expand Down Expand Up @@ -714,7 +714,7 @@ Update an API key's name or active status.
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Updated Key Name",
"created_at": "2024-01-01T12:00:00Z",
"created_at": "2026-01-01T12:00:00Z",
"is_active": false,
"scopes": ["read", "write"]
}
Expand Down Expand Up @@ -762,7 +762,7 @@ List all API keys for a specific user.
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "User's API Key",
"created_at": "2024-01-01T12:00:00Z",
"created_at": "2026-01-01T12:00:00Z",
"is_active": true,
"scopes": ["read", "write"]
}
Expand Down Expand Up @@ -799,7 +799,7 @@ Update another user's API key.
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Admin Updated Name",
"created_at": "2024-01-01T12:00:00Z",
"created_at": "2026-01-01T12:00:00Z",
"is_active": false,
"scopes": ["read", "write"]
}
Expand Down Expand Up @@ -880,6 +880,7 @@ api_template_login_attempts_total{status="invalid_password"} 24.0
**Configuration:**

To enable metrics, set in your `.env` file:

```bash
METRICS_ENABLED=true
```
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ extra:
- icon: fontawesome/brands/twitter
link: https://twitter.com/gnramsay-dev

copyright: © 2022-2025 Grant Ramsay (Seapagan)
copyright: © 2022-2026 Grant Ramsay (Seapagan)

plugins:
- mkdocstrings
Expand Down