Skip to content

Commit c26632b

Browse files
authored
Merge pull request #302 from avo-hq/add_audit_logging
2 parents f2ed648 + 26a9794 commit c26632b

File tree

6 files changed

+456
-2
lines changed

6 files changed

+456
-2
lines changed

docs/.vitepress/config.js

+6
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,12 @@ const config = {
204204
{text: "Dynamic Filters", link: "/3.0/dynamic-filters.html"},
205205
],
206206
},
207+
// {
208+
// text: "Audit Logging",
209+
// items: [
210+
// {text: "Overview", link: "/3.0/audit-logging/overview.html"},
211+
// ],
212+
// },
207213
{
208214
text: "Custom content",
209215
items: [

docs/.vitepress/theme/components/LicenseReq.vue

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@ const links = {
1212
community: "https://avohq.io/pricing#comparison-heading",
1313
pro: "https://avohq.io/subscriptions/new?plan=pro",
1414
advanced: "https://avohq.io/subscriptions/new?plan=advanced",
15-
kanban: "mailto:avo@avohq.io?subject=I'd%20like%20to%20learn%20more%20about%20the%20Kanban%20license&body=Hi%2C%0D%0A%0D%0AI'm%20....",
16-
custom: "mailto:avo@avohq.io?subject=I'd%20like%20to%20learn%20more%20about%20the%20Custom%20license&body=Hi%2C%0D%0A%0D%0AI'm%20....",
15+
kanban: "https://savvycal.com/avo-hq/dev-chat-24",
16+
audit_logging: "https://savvycal.com/avo-hq/dev-chat-24",
17+
custom: "https://savvycal.com/avo-hq/dev-chat-24",
1718
};
1819
const labels = {
1920
community: "Community",
2021
pro: "Pro",
2122
advanced: "Advanced",
2223
kanban: "Kanban",
24+
audit_logging: "Audit logging",
2325
custom: "Custom",
2426
};
2527
const href = computed(() => links[license.value]);
@@ -37,6 +39,7 @@ const label = computed(() => labels[license.value]);
3739
'bg-blue-500 hover:bg-blue-600': license == 'pro',
3840
'bg-violet-500 hover:bg-violet-600': license == 'advanced',
3941
'bg-fuchsia-500 hover:bg-fuchsia-600': license == 'kanban',
42+
'bg-teal-500 hover:bg-teal-600': license == 'audit_logging',
4043
'bg-rose-500 hover:bg-rose-600': license == 'custom',
4144
'text-xs px-1 py-px': size == 'xs',
4245
'text-sm px-2 py-1': size == 'sm',

0 commit comments

Comments
 (0)