2024-07-26 21:33:21 +02:00
|
|
|
export const { CUSTOM_TRANSFER_TOKEN_ACCESS_KEY } = require('./app-template/src/constants');
|
2022-10-28 09:35:21 +02:00
|
|
|
|
2024-02-07 17:49:54 +01:00
|
|
|
// NOTE: anything included here needs to be included in all test datasets exports
|
2024-05-20 11:15:33 +02:00
|
|
|
export const ALLOWED_CONTENT_TYPES = [
|
2024-01-18 10:22:06 +00:00
|
|
|
'admin::user',
|
|
|
|
'admin::role',
|
|
|
|
'admin::permission',
|
2024-02-29 14:32:37 +01:00
|
|
|
'admin::api-token',
|
|
|
|
'admin::transfer-token',
|
2024-01-18 10:22:06 +00:00
|
|
|
'api::article.article',
|
|
|
|
'api::author.author',
|
|
|
|
'api::homepage.homepage',
|
2024-02-28 11:23:50 +00:00
|
|
|
'api::product.product',
|
|
|
|
'api::shop.shop',
|
2025-02-13 14:35:38 +01:00
|
|
|
'api::match.match',
|
2024-01-18 10:22:06 +00:00
|
|
|
'api::upcoming-match.upcoming-match',
|
2024-01-29 15:35:20 +00:00
|
|
|
'api::unique.unique',
|
2024-03-01 14:01:17 +01:00
|
|
|
'plugin::content-manager.history-version',
|
2024-04-12 10:58:38 +02:00
|
|
|
/**
|
|
|
|
* I18N
|
|
|
|
*/
|
|
|
|
'plugin::i18n.locale',
|
|
|
|
/**
|
|
|
|
* CONTENT RELEASES
|
|
|
|
*/
|
2024-02-06 12:26:06 +01:00
|
|
|
'plugin::content-releases.release',
|
|
|
|
'plugin::content-releases.release-action',
|
2024-04-12 10:58:38 +02:00
|
|
|
/**
|
|
|
|
* REVIEW WORKFLOWS
|
|
|
|
*/
|
|
|
|
'plugin::review-workflows.workflow-stage',
|
|
|
|
'plugin::review-workflows.workflow',
|
2024-01-18 10:22:06 +00:00
|
|
|
/**
|
|
|
|
* UPLOADS
|
|
|
|
*/
|
|
|
|
'plugin::upload.file',
|
|
|
|
];
|
2022-10-28 09:35:21 +02:00
|
|
|
|
2024-05-20 11:15:33 +02:00
|
|
|
export const TITLE_LOGIN = 'Strapi Admin';
|
|
|
|
export const TITLE_HOME = 'Homepage | Strapi';
|
|
|
|
|
2022-10-28 09:35:21 +02:00
|
|
|
// TODO: we should start using @strapi.io addresses to have the chance one day to
|
|
|
|
// actually receive and check the emails; also: it is not nice to spam other peoples
|
|
|
|
// websites
|
2024-05-20 11:15:33 +02:00
|
|
|
export const ADMIN_EMAIL_ADDRESS = 'test@testing.com';
|
|
|
|
export const ADMIN_PASSWORD = 'Testing123!';
|
2024-09-17 11:15:28 +01:00
|
|
|
|
|
|
|
export const EDITOR_EMAIL_ADDRESS = 'editor@testing.com';
|
|
|
|
export const EDITOR_PASSWORD = 'Testing123!';
|