文件操作 - actions.ts
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/src/Campaigns/resources/store/actions.ts
编辑文件内容
import type {Notification} from '@givewp/campaigns/types'; export function addSnackbarNotice(notification: Notification) { return { type: 'ADD_NOTIFICATION', notification: { ...notification, autoHide: notification?.autoHide ?? true, isDismissible: notification?.isDismissible ?? true, duration: notification?.duration ?? 5000, type: notification.type ?? 'info', notificationType: 'snackbar', }, }; } export function addNotice(notification: Notification) { return { type: 'ADD_NOTIFICATION', notification: { ...notification, autoHide: notification?.autoHide ?? false, isDismissible: notification?.isDismissible ?? true, duration: notification?.duration ?? 5000, type: notification.type ?? 'info', notificationType: 'notice', }, }; } export function dismissNotification(id: string) { return { type: 'DISMISS_NOTIFICATION', id, }; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件