Tenant management
This commit is contained in:
@@ -16,7 +16,8 @@ const { request } = useAjax()
|
||||
const content = ref(props.data.impress_text ?? '')
|
||||
|
||||
async function save() {
|
||||
const response = await request('/api/v1/admin/tenant/impress', {
|
||||
const saveUrl = props.data.saveEndpoint ?? '/api/v1/admin/tenant/impress'
|
||||
const response = await request(saveUrl, {
|
||||
method: 'POST',
|
||||
body: { impress_text: content.value },
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user