Set write access to true in all commands that change data.
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / FcpInterface.java
index 4e8ecc4..01fae78 100644 (file)
@@ -68,6 +68,9 @@ public class FcpInterface {
                commands.put("LikePost", new LikePostCommand(core));
                commands.put("LikeReply", new LikeReplyCommand(core));
                commands.put("CreatePost", new CreatePostCommand(core));
+               commands.put("CreateReply", new CreateReplyCommand(core));
+               commands.put("DeletePost", new DeletePostCommand(core));
+               commands.put("DeleteReply", new DeleteReplyCommand(core));
        }
 
        //