forked from rsinger86/drf-access-policy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
47 lines (43 loc) · 1.24 KB
/
mkdocs.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
site_name: Django REST - Access Policy
theme:
name: "material"
language: en
feature:
tabs: false
palette:
primary: black
accent: red
font:
text: Roboto
code: Roboto Mono
icon:
logo: material/security
repo_name: rsinger86/drf-access-policy
repo_url: https://github.com/rsinger86/drf-access-policy
# Extensions
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
nav:
- Intro: index.md
- Usage - ViewSets: usage/view_set_usage.md
- Usage - Function-Based Views: usage/function_based_view_usage.md
- Statement Elements: statement_elements.md
- Policy Evaluation Logic: policy_logic.md
- Custom/Object-Level Conditions: object_level_permissions.md
- Field-Level Permissions: field_level_permissions.md
- ViewSet Mixin: view_set_mixin.md
- Reuse Conditions/Permissions: reusable_conditions.md
- Loading External Statements: loading_external_source.md
- Multitenancy/Scoping QuerySets: multi_tenacy.md
- Policy Re-Use: policy_reuse.md
- Customizing: customization.md
- Migrating: migration_notes.md
- License: license.md