fix(backend): correct admin/meta
response schema (#15434)
This commit is contained in:
parent
231c2c2e54
commit
dc608aada0
@ -512,6 +512,7 @@ export const meta = {
|
|||||||
},
|
},
|
||||||
federation: {
|
federation: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
|
enum: ['all', 'specified', 'none'],
|
||||||
optional: false, nullable: false,
|
optional: false, nullable: false,
|
||||||
},
|
},
|
||||||
federationHosts: {
|
federationHosts: {
|
||||||
|
@ -8349,7 +8349,8 @@ export type operations = {
|
|||||||
urlPreviewRequireContentLength: boolean;
|
urlPreviewRequireContentLength: boolean;
|
||||||
urlPreviewUserAgent: string | null;
|
urlPreviewUserAgent: string | null;
|
||||||
urlPreviewSummaryProxyUrl: string | null;
|
urlPreviewSummaryProxyUrl: string | null;
|
||||||
federation: string;
|
/** @enum {string} */
|
||||||
|
federation: 'all' | 'specified' | 'none';
|
||||||
federationHosts: string[];
|
federationHosts: string[];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user