Bläddra i källkod

Merge branch 'register' of ElliottStansbury/JhipsterGroupProject-Client into register

ElliottStansbury 5 år sedan
förälder
incheckning
9afc45cdb9

+ 1
- 1
src/main/java/rocks/zipcode/io/FaeBooApp.java Visa fil

@@ -35,7 +35,7 @@ public class FaeBooApp {
35 35
     }
36 36
 
37 37
     /**
38
-     * Initializes FaeBoo.
38
+     * Initializes FaeBoo.np
39 39
      * <p>
40 40
      * Spring profiles can be configured with a program argument --spring.profiles.active=your-active-profile
41 41
      * <p>

+ 3
- 2
src/main/java/rocks/zipcode/io/web/rest/AccountResource.java Visa fil

@@ -64,6 +64,7 @@ public class AccountResource {
64 64
         }
65 65
         User user = userService.registerUser(managedUserVM, managedUserVM.getPassword());
66 66
         mailService.sendActivationEmail(user);
67
+        System.out.println("1");
67 68
     }
68 69
 
69 70
     /**
@@ -79,7 +80,6 @@ public class AccountResource {
79 80
         if (!user.isPresent()) {
80 81
             throw new InternalServerErrorException("No user was found for this activation key");
81 82
         }
82
-        //consider adding profile and account details here
83 83
     }
84 84
 
85 85
     /**
@@ -92,6 +92,7 @@ public class AccountResource {
92 92
     @Timed
93 93
     public String isAuthenticated(HttpServletRequest request) {
94 94
         log.debug("REST request to check if the current user is authenticated");
95
+        System.out.println("3");
95 96
         return request.getRemoteUser();
96 97
     }
97 98
 
@@ -104,6 +105,7 @@ public class AccountResource {
104 105
     @GetMapping("/account")
105 106
     @Timed
106 107
     public UserDTO getAccount() {
108
+        System.out.println("4");
107 109
         return userService.getUserWithAuthorities()
108 110
             .map(UserDTO::new)
109 111
             .orElseThrow(() -> new InternalServerErrorException("User could not be found"));
@@ -128,7 +130,6 @@ public class AccountResource {
128 130
         if (!user.isPresent()) {
129 131
             throw new InternalServerErrorException("User could not be found");
130 132
         }
131
-
132 133
         userService.updateUser(userDTO.getFirstName(), userDTO.getLastName(), userDTO.getEmail(), userDTO.getLangKey(), userDTO.getImageUrl());
133 134
     }
134 135
 

+ 3
- 0
src/main/java/rocks/zipcode/io/web/rest/UserResource.java Visa fil

@@ -1,7 +1,9 @@
1 1
 package rocks.zipcode.io.web.rest;
2 2
 
3 3
 import rocks.zipcode.io.config.Constants;
4
+import rocks.zipcode.io.domain.Profile;
4 5
 import rocks.zipcode.io.domain.User;
6
+import rocks.zipcode.io.repository.ProfileRepository;
5 7
 import rocks.zipcode.io.repository.UserRepository;
6 8
 import rocks.zipcode.io.security.AuthoritiesConstants;
7 9
 import rocks.zipcode.io.service.MailService;
@@ -100,6 +102,7 @@ public class UserResource {
100 102
             throw new EmailAlreadyUsedException();
101 103
         } else {
102 104
             User newUser = userService.createUser(userDTO);
105
+
103 106
             mailService.sendCreationEmail(newUser);
104 107
             return ResponseEntity.created(new URI("/api/users/" + newUser.getLogin()))
105 108
                 .headers(HeaderUtil.createAlert( "userManagement.created", newUser.getLogin()))

+ 1
- 1
src/main/webapp/app/account/register/register.component.html Visa fil

@@ -12,7 +12,7 @@
12 12
             </div>
13 13
 
14 14
             <div class="alert alert-danger" *ngIf="errorUserExists" jhiTranslate="register.messages.error.userexists">
15
-                <strong>Login name already registered!</strong> Please choose another one.
15
+                <strong>Login name already registered!</strong> Please, choose another one.
16 16
             </div>
17 17
 
18 18
             <div class="alert alert-danger" *ngIf="errorEmailExists" jhiTranslate="register.messages.error.emailexists">

+ 2
- 8
src/main/webapp/app/home/home.component.html Visa fil

@@ -3,7 +3,8 @@
3 3
         <span class="hipster img-fluid rounded"></span>
4 4
     </div>
5 5
     <div class="col-md-9">
6
-        <h1 class="display-4" jhiTranslate="home.title">Welcome, Java Hipster!</h1>
6
+
7
+        <h1 class="display-1" jhiTranslate="home.title">Welcome to Elliott!</h1>
7 8
         <p class="lead" jhiTranslate="home.subtitle">This is your homepage</p>
8 9
 
9 10
         <div [ngSwitch]="isAuthenticated()">
@@ -26,13 +27,6 @@
26 27
             If you have any question on JHipster:
27 28
         </p>
28 29
 
29
-        <ul>
30
-            <li><a href="https://www.jhipster.tech/" target="_blank" rel="noopener" jhiTranslate="home.link.homepage">JHipster homepage</a></li>
31
-            <li><a href="http://stackoverflow.com/tags/jhipster/info" target="_blank" rel="noopener" jhiTranslate="home.link.stackoverflow">JHipster on Stack Overflow</a></li>
32
-            <li><a href="https://github.com/jhipster/generator-jhipster/issues?state=open" target="_blank" rel="noopener" jhiTranslate="home.link.bugtracker">JHipster bug tracker</a></li>
33
-            <li><a href="https://gitter.im/jhipster/generator-jhipster" target="_blank" rel="noopener" jhiTranslate="home.link.chat">JHipster public chat room</a></li>
34
-            <li><a href="https://twitter.com/java_hipster" target="_blank" rel="noopener" jhiTranslate="home.link.follow">follow @java_hipster on Twitter</a></li>
35
-        </ul>
36 30
 
37 31
         <p>
38 32
             <span jhiTranslate="home.like">If you like JHipster, don't forget to give us a star on</span> <a href="https://github.com/jhipster/generator-jhipster" target="_blank" rel="noopener" jhiTranslate="home.github">GitHub</a>!

+ 2
- 2
src/main/webapp/app/home/home.scss Visa fil

@@ -6,7 +6,7 @@ Main page styles
6 6
     display: inline-block;
7 7
     width: 347px;
8 8
     height: 497px;
9
-    background: url('../../content/images/hipster.png') no-repeat center top;
9
+    background: url('../../content/images/faceofbooks1.jpg') no-repeat center top;
10 10
     background-size: contain;
11 11
 }
12 12
 
@@ -17,7 +17,7 @@ Main page styles
17 17
     only screen and (min-resolution: 192dpi),
18 18
     only screen and (min-resolution: 2dppx) {
19 19
     .hipster {
20
-        background: url('../../content/images/hipster2x.png') no-repeat center top;
20
+        background: url('../../content/images/faceofbooks1.jpg') no-repeat center top;
21 21
         background-size: contain;
22 22
     }
23 23
 }

+ 1
- 1
src/main/webapp/app/layouts/navbar/navbar.scss Visa fil

@@ -71,7 +71,7 @@ Logo styles
71 71
             width: 70px;
72 72
             display: inline-block;
73 73
             vertical-align: middle;
74
-            background: url('../../../content/images/logo-jhipster.png') no-repeat center center;
74
+            background: url('../../../content/images/faceofbooks4.jpg') no-repeat center center;
75 75
             background-size: contain;
76 76
         }
77 77
     }

Binär
src/main/webapp/content/images/faceofbooks1.jpg Visa fil


Binär
src/main/webapp/content/images/faceofbooks2.jpg Visa fil


Binär
src/main/webapp/content/images/faceofbooks3.jpg Visa fil


Binär
src/main/webapp/content/images/faceofbooks4.jpg Visa fil


+ 3
- 3
src/main/webapp/i18n/en/home.json Visa fil

@@ -1,9 +1,9 @@
1 1
 {
2 2
     "home": {
3
-        "title": "Welcome, Java Hipster!",
4
-        "subtitle": "This is your homepage",
3
+        "title": "Welcome to FaeBoo!",
4
+        "subtitle": "Where we pride ourselves on being confused with FaceBook.",
5 5
         "logged": {
6
-            "message": "You are logged in as user \"{{username}}\"."
6
+            "message": "\"{{username}}\" is currently logged in."
7 7
         },
8 8
         "question": "If you have any question on JHipster:",
9 9
         "link": {