-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
150 lines (140 loc) · 5.67 KB
/
mkdocs.yml
File metadata and controls
150 lines (140 loc) · 5.67 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# Project information
site_name: Workflow Builder
site_url: https://ringcentral.github.io/ringcentral-automator-docs
# Repository
#repo_url: https://github.com/ringcentral/ringcentral-automator-docs
#repo_name: ringcentral/ringcentral-automator-docs
#edit_uri: tree/main/docs
docs_dir: docs
theme:
name: material
custom_dir: overrides
logo: img/RingCentral_logo_color.png
font:
code: Roboto Mono
text: Inter Tight
features:
- navigation.path
- navigation.sections
- navigation.expand
- navigation.tabs
- search.sharing
- search.highlight
palette:
- scheme: default
primary: custom
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/ringcentral
- icon: fontawesome/brands/twitter
link: https://twitter.com/ringcentraldevs
extra_css:
- extra.css
plugins:
- privacy
- search:
separator: '[\s\-,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- exclude:
regex:
- '^#.*'
- 'inc/templates.md'
- print-site
markdown_extensions:
- attr_list
- md_in_html
- admonition
- mdx_include
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
copyright: "2023 RingCentral, Inc. All rights reserved."
nav:
- 'Home': index.md
- 'User Guide':
- 'Getting started': users/index.md
- 'Importing/exporting workflows': users/import-export.md
- 'Customizing templates': users/customization.md
- 'Limiting workflow frequencies': users/frequency.md
- 'Enabling/disabling': users/enablement.md
- 'Histories': users/history.md
- 'Simulation': users/simulation.md
- 'Variables and text substitution': users/text-substitution.md
- 'Custom workflows': workflows/custom/index.md
- 'Admin Guide':
- 'Becoming an admin': admin/index.md
- 'Managing user workflows': admin/manage.md
- 'Non-user workflows': admin/non-users.md
- 'Copying workflows': admin/copying.md
- 'Managing workflow runners': admin/runners.md
- 'Templates & Recipes':
- 'Overview': workflows/index.md
- 'Templates':
- 'After-hours auto-reply': workflows/templates/after-hours.md
- 'Keyword-based auto-reply': workflows/templates/keywords.md
- 'Out-of-office auto-reply': workflows/templates/ooo-autoreplies.md
- 'SMS help request': workflows/templates/help-request.md
- 'Voicemail auto-reponse': workflows/templates/voicemail-autoresponse.md
- 'Voicemail notification': workflows/templates/voicemail-notification.md
- 'Recipes':
- 'Missed call auto-response': workflows/recipes/missed-call.md
- 'Non-user extension automations': workflows/recipes/extensions.md
- 'Forward all SMS': workflows/recipes/forward-sms.md
- 'Send auto-reply only once': workflows/recipes/autoreply-only-once.md
- 'Send SMS from a call queue': workflows/recipes/send-from-call-queue.md
- 'SMS opt-in/out auto-reply': workflows/recipes/sms-optout-autoreply.md
- 'Team Messaging OOO auto-reply': workflows/recipes/chat-ooo-autoreply.md
- 'Triggering from IVR menus': workflows/recipes/ivr-menus.md
- 'Unavailable auto-response': workflows/recipes/unavailable.md
- 'Voicemail auto-response': workflows/recipes/voicemail-autoresponse.md
- "We don't accept SMS auto-reponse": workflows/recipes/we-dont-accept-sms.md
- 'Reference':
- 'Triggers': workflows/custom/triggers/index.md
- 'Flow control': workflows/custom/flow/index.md
- 'Actions': workflows/custom/actions/index.md
- 'Variables': workflows/custom/variables.md
- 'Triggers':
- 'Call ended': workflows/custom/triggers/call-ended.md
- 'Call missed': workflows/custom/triggers/call-missed.md
- 'Call received': workflows/custom/triggers/call-received.md
- 'Chat message received': workflows/custom/triggers/chat-message-received.md
- 'Fax received': workflows/custom/triggers/fax-received.md
- 'Fax sent': workflows/custom/triggers/fax-sent.md
- 'On-demand': workflows/custom/triggers/on-demand.md
- 'Scheduled': workflows/custom/triggers/scheduled.md
- 'SMS received': workflows/custom/triggers/sms-received.md
- 'Voicemail received': workflows/custom/triggers/voicemail-received.md
- 'Flow control':
- 'If': workflows/custom/flow/if.md
# - 'Exit': workflows/custom/flow/exit.md
# - 'Repeat for each': workflows/custom/flow/foreach.md
# - 'Repeat while': workflows/custom/flow/while.md
- 'Switch': workflows/custom/flow/switch.md
- 'Actions':
- 'Comment': workflows/custom/actions/comment.md
- 'Create personal contact': workflows/custom/actions/create-contact.md
- 'Create meeting bridge': workflows/custom/actions/create-meeting.md
- 'Exit': workflows/custom/actions/exit.md
- 'Lookup contact': workflows/custom/actions/lookup-contact.md
- 'Parse JSON': workflows/custom/actions/parse-json.md
- 'Place call': workflows/custom/actions/ringout.md
- 'Send chat message': workflows/custom/actions/send-chat-message.md
- 'Send SMS': workflows/custom/actions/send-sms.md
- 'Send HTTP request': workflows/custom/actions/http-request.md
- 'Set variable': workflows/custom/actions/set-variable.md
- 'Transcribe media file': workflows/custom/actions/transcribe.md
- 'Update personal contact': workflows/custom/actions/update-contact.md
- 'Support': https://community.ringcentral.com/groups/workflow-builder-23