From 76dea282ad7eba810f0412fdf7c9aa0574466deb Mon Sep 17 00:00:00 2001 From: rijkvanzanten Date: Thu, 10 Sep 2020 14:58:47 -0400 Subject: [PATCH] Make collection/collections system interfaces --- app/src/interfaces/{ => _system}/collection/collection.vue | 0 app/src/interfaces/{ => _system}/collection/index.ts | 1 + app/src/interfaces/{ => _system}/collections/collections.vue | 0 app/src/interfaces/{ => _system}/collections/index.ts | 1 + 4 files changed, 2 insertions(+) rename app/src/interfaces/{ => _system}/collection/collection.vue (100%) rename app/src/interfaces/{ => _system}/collection/index.ts (97%) rename app/src/interfaces/{ => _system}/collections/collections.vue (100%) rename app/src/interfaces/{ => _system}/collections/index.ts (97%) diff --git a/app/src/interfaces/collection/collection.vue b/app/src/interfaces/_system/collection/collection.vue similarity index 100% rename from app/src/interfaces/collection/collection.vue rename to app/src/interfaces/_system/collection/collection.vue diff --git a/app/src/interfaces/collection/index.ts b/app/src/interfaces/_system/collection/index.ts similarity index 97% rename from app/src/interfaces/collection/index.ts rename to app/src/interfaces/_system/collection/index.ts index 0bf3265f0d..3f1e2e2bd0 100644 --- a/app/src/interfaces/collection/index.ts +++ b/app/src/interfaces/_system/collection/index.ts @@ -25,5 +25,6 @@ export default defineInterface(({ i18n }) => ({ }, }, ], + system: true, recommendedDisplays: ['collection'], })); diff --git a/app/src/interfaces/collections/collections.vue b/app/src/interfaces/_system/collections/collections.vue similarity index 100% rename from app/src/interfaces/collections/collections.vue rename to app/src/interfaces/_system/collections/collections.vue diff --git a/app/src/interfaces/collections/index.ts b/app/src/interfaces/_system/collections/index.ts similarity index 97% rename from app/src/interfaces/collections/index.ts rename to app/src/interfaces/_system/collections/index.ts index c77de822e3..8d21692cbb 100644 --- a/app/src/interfaces/collections/index.ts +++ b/app/src/interfaces/_system/collections/index.ts @@ -25,5 +25,6 @@ export default defineInterface(({ i18n }) => ({ }, }, ], + system: true, recommendedDisplays: ['labels'], }));