(input: {
userId: string;
groupId: string;
dataAbstraction: DataAbstraction<typeof dataHashes>;
})
| 159 | }); |
| 160 | } |
| 161 | async function _updateRecentGroupIds(input: { |
| 162 | userId: string; |
| 163 | groupId: string; |
| 164 | dataAbstraction: DataAbstraction<typeof dataHashes>; |
| 165 | }) { |
| 166 | if (input.groupId != null) { |
| 167 | await bumpRecentItem({ |
| 168 | userId: input.userId, |
| 169 | itemType: 'group', |
| 170 | itemId: input.groupId, |
| 171 | dataAbstraction: input.dataAbstraction, |
| 172 | }); |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | async function _updatePageBacklink(input: { |
| 177 | pageId: string; |
no test coverage detected