Skip to content

Commit ae713ed

Browse files
committed
chore: standardize @author tags to Devon Hillard
Replace "Digital Sanctuary" with "Devon Hillard" in 11 files for consistent author attribution. Preserved Edamijueda's attribution on PasswordPolicyService.
1 parent 79ad9c1 commit ae713ed

11 files changed

Lines changed: 11 additions & 11 deletions

src/main/java/com/digitalsanctuary/spring/user/api/UserAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
* {@code /user} and return JSON responses.
4646
* </p>
4747
*
48-
* @author Digital Sanctuary
48+
* @author Devon Hillard
4949
* @see UserService
5050
* @see UserEmailService
5151
*/

src/main/java/com/digitalsanctuary/spring/user/controller/UserActionController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* are typically accessed when users click links in system-generated emails.
3030
* </p>
3131
*
32-
* @author Digital Sanctuary
32+
* @author Devon Hillard
3333
* @see UserService
3434
* @see UserVerificationService
3535
*/

src/main/java/com/digitalsanctuary/spring/user/controller/UserPageController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* a Thymeleaf template name for the corresponding user interface page.
2323
* </p>
2424
*
25-
* @author Digital Sanctuary
25+
* @author Devon Hillard
2626
*/
2727
@Slf4j
2828
@RequiredArgsConstructor

src/main/java/com/digitalsanctuary/spring/user/dto/PasswordDto.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Contains the old password, new password, and optional reset token.
1313
* </p>
1414
*
15-
* @author Digital Sanctuary
15+
* @author Devon Hillard
1616
*/
1717
@Data
1818
public class PasswordDto {

src/main/java/com/digitalsanctuary/spring/user/dto/PasswordResetRequestDto.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* The email is validated for format and length constraints.
1313
* </p>
1414
*
15-
* @author Digital Sanctuary
15+
* @author Devon Hillard
1616
*/
1717
@Data
1818
public class PasswordResetRequestDto {

src/main/java/com/digitalsanctuary/spring/user/dto/SavePasswordDto.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* and enters a new password. Contains the reset token and the new password with confirmation.
1212
* </p>
1313
*
14-
* @author Digital Sanctuary
14+
* @author Devon Hillard
1515
*/
1616
@Data
1717
public class SavePasswordDto {

src/main/java/com/digitalsanctuary/spring/user/dto/UserDto.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Validated using {@link PasswordMatches} to ensure password confirmation matches.
1616
* </p>
1717
*
18-
* @author Digital Sanctuary
18+
* @author Devon Hillard
1919
*/
2020
@Data
2121
@PasswordMatches

src/main/java/com/digitalsanctuary/spring/user/dto/UserProfileUpdateDto.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Separate from {@link UserDto} to avoid requiring password fields during profile updates.
1212
* </p>
1313
*
14-
* @author Digital Sanctuary
14+
* @author Devon Hillard
1515
*/
1616
@Data
1717
public class UserProfileUpdateDto {

src/main/java/com/digitalsanctuary/spring/user/web/GlobalMessageControllerAdvice.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* <p>Usage example: Redirect to {@code /somepage?messageKey=user.created.success} and
1919
* the resolved message will be available as the {@code message} model attribute.</p>
2020
*
21-
* @author Digital Sanctuary
21+
* @author Devon Hillard
2222
* @see org.springframework.web.bind.annotation.ControllerAdvice
2323
* @see org.springframework.context.MessageSource
2424
*/

src/main/java/com/digitalsanctuary/spring/user/web/GlobalUserModelInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* <p>The user object is retrieved from the Spring Security context and added to the model
3131
* as the {@code user} attribute when applicable.</p>
3232
*
33-
* @author Digital Sanctuary
33+
* @author Devon Hillard
3434
* @see UserWebConfig
3535
* @see IncludeUserInModel
3636
* @see ExcludeUserFromModel

0 commit comments

Comments
 (0)