Skip to content

Commit 15e4572

Browse files
huangdijiaclaude
andauthored
Add comprehensive OAuth2 server documentation (#877)
* Add comprehensive documentation for OAuth2 server component - Added detailed English documentation in docs/en/components/oauth2-server.md - Added Chinese Simplified documentation in docs/zh-cn/components/oauth2-server.md - Added Chinese Traditional (Hong Kong) documentation in docs/zh-hk/components/oauth2-server.md - Added Chinese Traditional (Taiwan) documentation in docs/zh-tw/components/oauth2-server.md Documentation includes: - Complete installation and setup guide - Configuration examples and environment variables - All supported grant types with examples - API endpoints and usage examples - Available commands for client management - Event system documentation - Security best practices - Testing guidelines - Error handling reference 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * Update docs and translate * Add OAuth2 Server to sidebar navigation - Added OAuth2 Server entry to English sidebar - Added OAuth2 服务器 to Chinese Simplified sidebar - Added OAuth2 服務器 to Chinese Traditional (Hong Kong) sidebar - Added OAuth2 伺服器 to Chinese Traditional (Taiwan) sidebar 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com> * Add local settings for Claude permissions Introduces .claude/settings.local.json to specify allowed Bash commands for Claude, including git and GitHub CLI operations. --------- Co-authored-by: Deeka Wong <8337659+huangdijia@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com>
1 parent 60ea197 commit 15e4572

8 files changed

Lines changed: 1480 additions & 0 deletions

File tree

.vitepress/src/en/sidebars.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,10 @@ const sidebar:DefaultTheme.Sidebar = {
141141
text: 'Notification Mail',
142142
link: '/en/components/notification-mail.md'
143143
},
144+
{
145+
text: 'OAuth2 Server',
146+
link: '/en/components/oauth2-server.md'
147+
},
144148
{
145149
text: 'OpenAI Client',
146150
link: '/en/components/openai-client.md'

.vitepress/src/zh-cn/sidebars.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,10 @@ const sidebar:DefaultTheme.Sidebar = {
154154
text: 'Notification Mail',
155155
link: '/zh-cn/components/notification-mail.md'
156156
},
157+
{
158+
text: 'OAuth2 服务器',
159+
link: '/zh-cn/components/oauth2-server.md'
160+
},
157161
{
158162
text: 'OpenAI Client',
159163
link: '/zh-cn/components/openai-client.md'

.vitepress/src/zh-hk/sidebars.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,10 @@ const sidebar:DefaultTheme.Sidebar = {
154154
text: 'Notification Mail',
155155
link: '/zh-hk/components/notification-mail.md'
156156
},
157+
{
158+
text: 'OAuth2 服務器',
159+
link: '/zh-hk/components/oauth2-server.md'
160+
},
157161
{
158162
text: 'OpenAI Client',
159163
link: '/zh-hk/components/openai-client.md'

.vitepress/src/zh-tw/sidebars.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,10 @@ const sidebar:DefaultTheme.Sidebar = {
154154
text: 'Notification Mail',
155155
link: '/zh-tw/components/notification-mail.md'
156156
},
157+
{
158+
text: 'OAuth2 伺服器',
159+
link: '/zh-tw/components/oauth2-server.md'
160+
},
157161
{
158162
text: 'OpenAI Client',
159163
link: '/zh-tw/components/openai-client.md'

0 commit comments

Comments
 (0)