@plone/volto
Version:
Volto
184 lines (183 loc) • 4.93 kB
JavaScript
/**
* Point of contact for action modules.
* @module actions
* @example import { getSchema } from 'actions';
*/
export { listActions } from '/volto/actions/actions/actions';
export { getBreadcrumbs } from '/volto/actions/breadcrumbs/breadcrumbs';
export { setExpandedToolbar } from '/volto/actions/toolbar/toolbar';
export {
copy,
cut,
copyContent,
moveContent,
} from '/volto/actions/clipboard/clipboard';
export {
installAddon,
listAddons,
uninstallAddon,
upgradeAddon,
} from './addons/addons';
export {
addComment,
deleteComment,
listComments,
listMoreComments,
updateComment,
} from '/volto/actions/comments/comments';
export {
createContent,
deleteContent,
updateContent,
getContent,
orderContent,
sortContent,
resetContent,
updateColumnsContent,
lockContent,
unlockContent,
linkIntegrityCheck,
updateUploadedFiles,
} from '/volto/actions/content/content';
export {
getControlpanel,
postControlpanel,
deleteControlpanel,
listControlpanels,
updateControlpanel,
getSystemInformation,
getDatabaseInformation,
} from '/volto/actions/controlpanels/controlpanels';
export { getDiff } from '/volto/actions/diff/diff';
export { emailNotification } from '/volto/actions/emailNotification/emailNotification';
export { emailSend } from '/volto/actions/emailSend/emailSend';
export {
createGroup,
deleteGroup,
getGroup,
listGroups,
updateGroup,
} from '/volto/actions/groups/groups';
export {
getHistory,
revertHistory,
} from '/volto/actions/history/history';
export {
getTransactions,
revertTransactions,
} from '/volto/actions/transactions/transactions';
export {
addMessage,
removeMessage,
purgeMessages,
} from '/volto/actions/messages/messages';
export { getNavigation } from '/volto/actions/navigation/navigation';
export {
createRelations,
deleteRelations,
queryRelations,
getRelationStats,
} from '/volto/actions/relations/relations';
export { rebuildRelations } from '/volto/actions/relations/rebuild';
export { listRoles } from '/volto/actions/roles/roles';
export {
getSchema,
postSchema,
putSchema,
updateSchema,
} from '/volto/actions/schema/schema';
export {
addRule,
moveRuleCondition,
moveRuleAction,
getRules,
enableRules,
disableRules,
applyRulesToSubfolders,
unapplyRulesToSubfolders,
removeRules,
getControlPanelRule,
getControlPanelRules,
deleteControlPanelRule,
getContentRulesEvents,
addNewRule,
editRule,
removeCondition,
addCondition,
editCondition,
getCondition,
removeAction,
addAction,
editAction,
getAction,
} from '/volto/actions/rules/rules';
export {
resetSearchContent,
searchContent,
} from '/volto/actions/search/search';
export {
updateSharing,
getSharing,
} from '/volto/actions/sharing/sharing';
export {
getAliases,
addAliases,
removeAliases,
} from '/volto/actions/aliases/aliases';
export { getTypes } from '/volto/actions/types/types';
export {
createUser,
deleteUser,
getUser,
listUsers,
setInitialPassword,
resetPassword,
updatePassword,
updateUser,
} from '/volto/actions/users/users';
export {
login,
loginRenew,
logout,
resetLoginRequest,
} from '/volto/actions/userSession/userSession';
export {
getVocabulary,
getVocabularyTokenTitle,
} from '/volto/actions/vocabularies/vocabularies';
export {
getWorkflow,
transitionWorkflow,
} from '/volto/actions/workflow/workflow';
export { getQuerystring } from '/volto/actions/querystring/querystring';
export { getQueryStringResults } from '/volto/actions/querystringsearch/querystringsearch';
export {
setMetadataFieldsets,
setMetadataFocus,
resetMetadataFocus,
setSidebarTab,
} from '/volto/actions/sidebar/sidebar';
export { setFormData, setUIState } from '/volto/actions/form/form';
export {
deleteLinkTranslation,
getTranslationLocator,
linkTranslation,
} from '/volto/actions/translations/translations';
export {
setBlocksClipboard,
resetBlocksClipboard,
} from '/volto/actions/blocksClipboard/blocksClipboard';
export { loadLazyLibrary } from '/volto/actions/lazyLibraries/lazyLibraries';
export { getContextNavigation } from '/volto/actions/contextNavigation/contextNavigation';
export { authenticatedRole } from '/volto/actions/authRole/authRole';
export * from './asyncConnect/asyncConnect';
export { changeLanguage, changeLanguageCookies } from './language/language';
export {
applyWorkingCopy,
createWorkingCopy,
removeWorkingCopy,
} from './workingcopy/workingcopy';
export { getUserSchema } from './userschema/userschema';
export { getUpgradeInformation, runUpgrade } from './upgrade/upgrade';
export { getSite } from './site/site';
export { getNavroot } from './navroot/navroot';