-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkgendocs.yml
58 lines (52 loc) · 1.48 KB
/
mkgendocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
sources_dir: docs/sources
templates_dir: docs/templates
repo: https://github.com/nneji123/fastapi_auth #link to sources on github
version: main #link to sources on github
pages:
- page: "api/fastapi_auth/Postgres_access.md"
source: "fastapi_auth/_postgres_access.py"
classes:
- PostgresAccess:
- init_db
- create_key
- renew_key
- revoke_key
- check_key
- _update_usage
- get_usage_stats
- page: "api/fastapi_auth/sqlite_access.md"
source: "fastapi_auth/_sqlite_access.py"
classes:
- SQLiteAccess:
- init_db
- create_key
- renew_key
- revoke_key
- check_key
- _update_usage
- get_usage_stats
- page: "api/fastapi_auth/mongodb_access.md"
source: "fastapi_auth/_mongodb_access.py"
classes:
- MongodbAccess:
- init_db
- create_key
- renew_key
- revoke_key
- check_key
- get_usage_stats
- page: "api/fastapi_auth/security_secret.md"
source: "fastapi_auth/_security_secret.py"
classes:
- GhostLoadedSecret:
- get_secret_value
- page: "verification_checks.md"
source: 'fastapi_auth/endpoints.py'
functions:
- hash_password
- email_validate
- check_length_password
- page: "security_password.md"
source: 'fastapi_auth/security_api_key.py'
functions:
- api_key_security