mirror of
https://github.com/wassname/talk.git
synced 2026-07-19 11:28:50 +08:00
30 lines
788 B
JavaScript
30 lines
788 B
JavaScript
import {createDefaultResponseFragments} from '../utils';
|
|
|
|
// fragments defined here are automatically registered.
|
|
export default {
|
|
...createDefaultResponseFragments(
|
|
'SetUserRoleResponse',
|
|
'ChangeUsernameResponse',
|
|
'BanUsersResponse',
|
|
'UnBanUserResponse',
|
|
'SetUserSuspensionStatusResponse',
|
|
'SetCommentStatusResponse',
|
|
'SetUsernameStatusResponse',
|
|
'UnSuspendUserResponse',
|
|
'SuspendUserResponse',
|
|
'CreateCommentResponse',
|
|
'CreateFlagResponse',
|
|
'EditCommentResponse',
|
|
'PostFlagResponse',
|
|
'CreateDontAgreeResponse',
|
|
'DeleteActionResponse',
|
|
'ModifyTagResponse',
|
|
'IgnoreUserResponse',
|
|
'StopIgnoringUserResponse',
|
|
'UpdateSettingsResponse',
|
|
'UpdateAssetSettingsResponse',
|
|
'UpdateAssetStatusResponse',
|
|
)
|
|
};
|
|
|