Skip to content

Commit

Permalink
Merge branch 'master' into fix/Twitter-Logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Akshat-bhatia73 committed Aug 25, 2023
2 parents 096010d + 5fd680f commit b39f291
Show file tree
Hide file tree
Showing 56 changed files with 1,595 additions and 926 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -548,34 +548,35 @@ export const database: NavMenuConstant = {
items: [
{ name: 'Connecting to your database', url: '/guides/database/connecting-to-postgres' },
{ name: 'Managing tables, views, and data', url: '/guides/database/tables' },
{ name: 'JSON and unstructured data', url: '/guides/database/json' },
{ name: 'Managing database functions', url: '/guides/database/functions' },
{ name: 'Managing indexes', url: '/guides/database/postgres/indexes' },
{ name: 'Managing database triggers', url: '/guides/database/postgres/triggers' },
{ name: 'Managing database webhooks', url: '/guides/database/webhooks' },
{ name: 'Managing database replication', url: '/guides/database/replication' },
{ name: 'Using Full Text Search', url: '/guides/database/full-text-search' },
],
},
{
name: 'Access and security',
url: undefined,
items: [
{ name: 'Row Level Security', url: '/guides/database/postgres/row-level-security' },
{ name: 'Managing Postgres Roles', url: '/guides/database/postgres/roles' },
{ name: 'Managing secrets with Vault', url: '/guides/database/vault' },
{ name: 'Column encryption', url: '/guides/database/column-encryption' },
],
},
{
name: 'Postgres Guides',
url: undefined,
items: [
{
name: 'Analyzing efficiency and performance',
url: '/guides/database/inspect',
},
{
name: 'JSON and unstructured data',
url: '/guides/database/json',
},
{ name: 'Implementing Full Text Search', url: '/guides/database/full-text-search' },
{ name: 'Implementing Cascade Deletes', url: '/guides/database/postgres/cascade-deletes' },
{ name: 'Implementing column encryption', url: '/guides/database/column-encryption' },
{ name: 'Partitioning your tables', url: '/guides/database/partitions' },
{ name: 'Query Optimization', url: '/guides/database/query-optimization' },
{ name: 'Debugging and monitoring', url: '/guides/database/inspect' },
{ name: 'Partitioning your tables', url: '/guides/database/partitions' },
{ name: 'Implementing Cascade Deletes', url: '/guides/database/postgres/cascade-deletes' },
{ name: 'Managing database replication', url: '/guides/database/replication' },
{ name: 'Testing your database', url: '/guides/database/testing' },
{ name: 'Managing Timeouts', url: '/guides/database/timeouts' },
{ name: 'Managing Passwords', url: '/guides/database/managing-passwords' },
{ name: 'Configuring Timezones', url: '/guides/database/managing-timezones' },
{ name: 'Database Configuration', url: '/guides/database/postgres/configuration' },
],
},
{
Expand Down Expand Up @@ -905,10 +906,20 @@ export const storage: NavMenuConstant = {
items: [
{ name: 'Overview', url: '/guides/storage' },
{ name: 'Quickstart', url: '/guides/storage/quickstart' },
{ name: 'Uploads', url: '/guides/storage/uploads' },
{ name: 'Access Control', url: '/guides/storage/access-control' },
{ name: 'CDN', url: '/guides/storage/cdn' },
{ name: 'Image Transformations', url: '/guides/storage/image-transformations' },
{
name: 'Fundamentals',
url: undefined,
items: [
{ name: 'Uploading files to Storage', url: '/guides/storage/uploads' },
{ name: 'Image Transformations', url: '/guides/storage/image-transformations' },
{ name: 'How caching works', url: '/guides/storage/cdn' },
],
},
{
name: 'Access and security',
url: undefined,
items: [{ name: 'Access Control', url: '/guides/storage/access-control' }],
},
],
}

Expand Down
146 changes: 37 additions & 109 deletions apps/docs/pages/guides/auth/auth-mfa.mdx

Large diffs are not rendered by default.

Loading

0 comments on commit b39f291

Please sign in to comment.