mirror of
https://github.com/wassname/talk.git
synced 2026-07-06 05:17:19 +08:00
8 lines
123 B
JavaScript
8 lines
123 B
JavaScript
const User = {
|
|
actions({id}, _, {loaders}) {
|
|
return loaders.Actions.getByID.load(id);
|
|
}
|
|
};
|
|
|
|
module.exports = User;
|