Prepare release 2.30.0

This commit is contained in:
tom79 2020-02-08 18:02:50 +01:00
parent cbf9696088
commit 8b816b5a70
1 changed files with 23 additions and 15 deletions

View File

@ -4377,6 +4377,12 @@ public class API {
case UNPIN:
action = String.format("/statuses/%s/unpin", targetedId);
break;
case REACT:
action = String.format("/pleroma/statuses/%s/react_with_emoji", targetedId);
break;
case UNREACT:
action = String.format("/pleroma/statuses/%s/unreact_with_emoji", targetedId);
break;
case ENDORSE:
action = String.format("/accounts/%s/pin", targetedId);
break;
@ -6570,6 +6576,8 @@ public class API {
REMOTE_FOLLOW,
PIN,
UNPIN,
REACT,
UNREACT,
ENDORSE,
UNENDORSE,
SHOW_BOOST,