Hackers' Pub에 차단 구현하면서 지금 만들고 있는 코드인데… fromAccountToTarget/fromTargetToAccount 말고 좀 더 짧으면서 좋은 이름이 없을까? 🤔

export type RelationshipState =
  | "block"
  | "follow"
  | "request"
  | "none";

export interface Relationship {
  account: Account & { actor: Actor };
  target: Actor;
  fromAccountToTarget: RelationshipState;
  fromTargetToAccount: RelationshipState;
}
2

If you have a fediverse account, you can quote this note from your own instance. Search https://hackers.pub/ap/notes/01962350-efbd-7bd9-8fdf-90a45a9328ea on your instance and quote it. (Note that quoting is not supported in Mastodon.)