TASK:code-create 注册用户添加为AiDA的游客

BUGFIX:0关注状态下获取动态
This commit is contained in:
2024-08-27 11:27:05 +08:00
parent e86b576050
commit d23ac82b1b
8 changed files with 160 additions and 2 deletions

View File

@@ -57,4 +57,12 @@ public class AccountTask {
accountService.toVisitor(account);
}
}
/**
* 将Code-Create上注册的用户添加为AiDA的游客
*/
// @Scheduled(cron = "0 */5 * * * *") // Run every 5 minutes
public void registerUserToVisitor(){
accountService.registerUserToVisitor();
}
}