mirror of
https://github.com/wassname/talk.git
synced 2026-07-13 17:45:56 +08:00
13 lines
252 B
JavaScript
13 lines
252 B
JavaScript
const AssetActionSummary = {
|
|
__resolveType({action_type}) {
|
|
switch (action_type) {
|
|
case 'FLAG':
|
|
return 'FlagAssetActionSummary';
|
|
case 'LIKE':
|
|
return 'LikeAssetActionSummary';
|
|
}
|
|
}
|
|
};
|
|
|
|
module.exports = AssetActionSummary;
|