mirror of
https://github.com/wassname/talk.git
synced 2026-08-02 13:10:23 +08:00
7 lines
321 B
JavaScript
7 lines
321 B
JavaScript
import {SHOW_BAN_USER_DIALOG, HIDE_BAN_USER_DIALOG} from '../constants/banUserDialog';
|
|
|
|
export const showBanUserDialog = ({userId, username, commentId, commentStatus}) =>
|
|
({type: SHOW_BAN_USER_DIALOG, userId, username, commentId, commentStatus});
|
|
|
|
export const hideBanUserDialog = () => ({type: HIDE_BAN_USER_DIALOG});
|