File tree Expand file tree Collapse file tree 8 files changed +84
-3
lines changed Expand file tree Collapse file tree 8 files changed +84
-3
lines changed Original file line number Diff line number Diff line change 1+ name : docs
2+ on :
3+ push :
4+ branches :
5+ - master
6+ jobs :
7+ deploy :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v2
11+ - uses : actions/setup-python@v2
12+ with :
13+ python-version : 3.x
14+ - run : pip install mkdocs-material
15+ - run : mkdocs gh-deploy --force
Original file line number Diff line number Diff line change 66composer.lock
77.DS_Store
88.idea /
9+ site
Original file line number Diff line number Diff line change 1+ document . addEventListener ( 'DOMContentLoaded' , ( event ) => {
2+ hljs . highlightAll ( ) ;
3+ } ) ;
Original file line number Diff line number Diff line change @@ -32,8 +32,6 @@ The only requirement is that your new class MUST extend the provided `UserModel`
3232public $userProvider = 'CodeIgniter\Shield\Models\UserModel';
3333```
3434
35- <a name =" identities " />
36-
3735## User Identities
3836
3937User accounts are stored separately from the information needed to identify that user. These identifying pieces of data are
Original file line number Diff line number Diff line change 1010* [ Testing] ( testing.md )
1111* [ Customization] ( customization.md )
1212
13- Guides:
13+ ## Guides
1414* [ Protecting an API with Access Tokens] ( guides/api_tokens.md )
1515* [ Mobile Authentication with Access Tokens] ( guides/mobile_apps.md )
Original file line number Diff line number Diff line change 1+ site_name : CodeIgniter Shield
2+ site_description : Documentation for the official Authentication and Authorization framework for CodeIgniter 4
3+
4+ theme :
5+ name : material
6+ logo : assets/flame.svg
7+ favicon : assets/favicon.ico
8+ icon :
9+ repo : fontawesome/brands/github
10+ font :
11+ text : Raleway
12+ palette :
13+ primary : deep orange
14+ features :
15+ - navigation.sections
16+
17+ extra :
18+ homepage : https://codeigniter.com
19+
20+ social :
21+ - icon : fontawesome/brands/github
22+ link : https://github.com/codeigniter4/shield
23+ name : GitHub
24+
25+ repo_url : https://github.com/codeigniter4/shield
26+
27+ markdown_extensions :
28+ - pymdownx.superfences
29+ - pymdownx.highlight :
30+ use_pygments : false
31+
32+ extra_css :
33+ - https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.6.0/build/styles/github.min.css
34+
35+ extra_javascript :
36+ - https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.6.0/build/highlight.min.js
37+ - assets/hljs.js
38+
39+ nav :
40+ - Home : index.md
41+ - Installation : install.md
42+ - Concepts : concepts.md
43+ - Quick Start Guide : quickstart.md
44+ - Authentication : authentication.md
45+ - Authorization : authorization.md
46+ - Auth Actions : auth_actions.md
47+ - Events : events.md
48+ - Testing : testing.md
49+ - Customization : customization.md
50+ - session_auth_event_and_logging.md
51+ - Guides :
52+ - guides/api_tokens.md
53+ - guides/mobile_apps.md
You can’t perform that action at this time.
0 commit comments