aboutsummaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-09-20 10:47:14 +0200
committerdefault <nobody@localhost>2024-09-20 10:47:14 +0200
commit2d2a685ec8bb30452fbf66025391f34f2bd03685 (patch)
tree0da1501b7a71e4ca13dd24ceb744b9bf569e94cf /activitypub.c
parent3a5c78147cf20f46ccabb9104bf650d7561ebde9 (diff)
More migration work.
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c
index 9a49ba9..748327b 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -2696,6 +2696,14 @@ int migrate_account(snac *user)
return 1;
}
+ xs *move = msg_move(user, new_account);
+ xs *fwers = follower_list(user);
+
+ xs_json_dump(move, 4, stdout);
+ printf("\n");
+ xs_json_dump(fwers, 4, stdout);
+ printf("\n");
+
return 0;
}