mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 05:25:41 +08:00
31 lines
842 B
JavaScript
31 lines
842 B
JavaScript
import { createDefaultResponseFragments } from '../utils';
|
|
|
|
// fragments defined here are automatically registered.
|
|
export default {
|
|
...createDefaultResponseFragments(
|
|
'BanUsersResponse',
|
|
'ChangeUsernameResponse',
|
|
'CloseAssetResponse',
|
|
'CreateCommentResponse',
|
|
'CreateDontAgreeResponse',
|
|
'CreateFlagResponse',
|
|
'DeleteActionResponse',
|
|
'EditCommentResponse',
|
|
'IgnoreUserResponse',
|
|
'ModifyTagResponse',
|
|
'PostFlagResponse',
|
|
'SetCommentStatusResponse',
|
|
'SetUsernameResponse',
|
|
'SetUsernameStatusResponse',
|
|
'SetUserRoleResponse',
|
|
'SetUserSuspensionStatusResponse',
|
|
'StopIgnoringUserResponse',
|
|
'SuspendUserResponse',
|
|
'UnbanUserResponse',
|
|
'UnsuspendUserResponse',
|
|
'UpdateAssetSettingsResponse',
|
|
'UpdateAssetStatusResponse',
|
|
'UpdateSettingsResponse'
|
|
),
|
|
};
|