✨ Allow user to share a flow publicly and make it duplicatable
Closes #360
This commit is contained in:
@@ -11,7 +11,7 @@ export const createCustomDomain = authenticatedProcedure
|
||||
.meta({
|
||||
openapi: {
|
||||
method: 'POST',
|
||||
path: '/custom-domains',
|
||||
path: '/v1/custom-domains',
|
||||
protect: true,
|
||||
summary: 'Create custom domain',
|
||||
tags: ['Custom domains'],
|
||||
|
||||
@@ -10,7 +10,7 @@ export const deleteCustomDomain = authenticatedProcedure
|
||||
.meta({
|
||||
openapi: {
|
||||
method: 'DELETE',
|
||||
path: '/custom-domains/{name}',
|
||||
path: '/v1/custom-domains/{name}',
|
||||
protect: true,
|
||||
summary: 'Delete custom domain',
|
||||
tags: ['Custom domains'],
|
||||
|
||||
@@ -9,7 +9,7 @@ export const listCustomDomains = authenticatedProcedure
|
||||
.meta({
|
||||
openapi: {
|
||||
method: 'GET',
|
||||
path: '/custom-domains',
|
||||
path: '/v1/custom-domains',
|
||||
protect: true,
|
||||
summary: 'List custom domains',
|
||||
tags: ['Custom domains'],
|
||||
|
||||
@@ -16,7 +16,7 @@ export const verifyCustomDomain = authenticatedProcedure
|
||||
.meta({
|
||||
openapi: {
|
||||
method: 'GET',
|
||||
path: '/custom-domains/{name}/verify',
|
||||
path: '/v1/custom-domains/{name}/verify',
|
||||
protect: true,
|
||||
summary: 'Verify domain config',
|
||||
tags: ['Custom domains'],
|
||||
|
||||
Reference in New Issue
Block a user