nextcloud/web-installerPublic NotificationsYou must be signed in to change notification settings Fork25 Star38 Files fa99bcf README.md setup-nextcloud.php Latest commit JanDragon Updated to PHP 7.2 as Minimum Jan 20, 2020 fa99bcf·Jan 20, 2020 ...
+); + +BlogPost.getInitialProps = async ({ req, query }) => { + const res = await fetch(`http://localhost:3000/api/post/${query.postId}`); + const json = await res.json(); + return { post: json.post }; +}; + +export default BlogPost; diff --git a/pages/api/post/...
com/taobao/rigel/rap/account/web/action/AccountAction.java @@ -39,6 +39,8 @@ public class AccountAction extends ActionBase { private String profileValue; private boolean isEditMode = false; + public String kaptcha; + public User getUser() { return user; } @@ -286,6 +288,14 @@ ...