mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 16:37:56 +00:00
3b5b732a1a
* feat: plugin-mock-collections * fix: mock bug * feat: field interfaces * fix: field interface * fix: formula * fix: file collection * fix: map * refactor: change api path from :create to :mock * fix: avoid test failed * chore: remove useless code * fix: mock records * fix: association * feat: custom data * fix: mockAttachment * fix: count --------- Co-authored-by: Rain <958414905@qq.com>
11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
export const url = {
|
|
options: () => ({
|
|
type: 'string',
|
|
uiSchema: {
|
|
type: 'string',
|
|
'x-component': 'Input.URL',
|
|
},
|
|
}),
|
|
mock: () => null,
|
|
};
|