mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 05:42:43 +08:00
24 lines
614 B
JavaScript
24 lines
614 B
JavaScript
import {createDefaultResponseFragments} from '../utils';
|
|
|
|
// fragments defined here are automatically registered.
|
|
export default {
|
|
...createDefaultResponseFragments(
|
|
'SetUserBanStatusResponse',
|
|
'SetUserSuspensionStatusResponse',
|
|
'SetCommentStatusResponse',
|
|
'SuspendUserResponse',
|
|
'RejectUsernameResponse',
|
|
'CreateCommentResponse',
|
|
'CreateFlagResponse',
|
|
'EditCommentResponse',
|
|
'PostFlagResponse',
|
|
'CreateDontAgreeResponse',
|
|
'DeleteActionResponse',
|
|
'ModifyTagResponse',
|
|
'IgnoreUserResponse',
|
|
'StopIgnoringUserResponse',
|
|
'UpdateSettingsResponse',
|
|
)
|
|
};
|
|
|