mirror of
https://github.com/wassname/talk.git
synced 2026-07-17 11:33:39 +08:00
8 lines
353 B
JavaScript
8 lines
353 B
JavaScript
import {SHOW_SUSPEND_USER_DIALOG, HIDE_SUSPEND_USER_DIALOG} from '../constants/suspendUserDialog.js';
|
|
|
|
export const showSuspendUserDialog = ({userId, username, commentId, commentStatus}) =>
|
|
({type: SHOW_SUSPEND_USER_DIALOG, userId, username, commentId, commentStatus});
|
|
|
|
export const hideSuspendUserDialog = () => ({type: HIDE_SUSPEND_USER_DIALOG});
|
|
|