mirror of
https://github.com/wassname/talk.git
synced 2026-07-10 11:33:35 +08:00
25 lines
640 B
JavaScript
25 lines
640 B
JavaScript
import {createDefaultResponseFragments} from '../utils';
|
|
|
|
// fragments defined here are automatically registered.
|
|
export default {
|
|
...createDefaultResponseFragments(
|
|
'SetCommentStatusResponse',
|
|
'SuspendUserResponse',
|
|
'RejectUsernameResponse',
|
|
'CreateCommentResponse',
|
|
'SetUserStatusResponse',
|
|
'CreateFlagResponse',
|
|
'EditCommentResponse',
|
|
'PostFlagResponse',
|
|
'CreateDontAgreeResponse',
|
|
'DeleteActionResponse',
|
|
'ModifyTagResponse',
|
|
'IgnoreUserResponse',
|
|
'StopIgnoringUserResponse',
|
|
'UpdateSettingsResponse',
|
|
'UpdateAssetSettingsResponse',
|
|
'UpdateAssetStatusResponse',
|
|
)
|
|
};
|
|
|