[O] Correct comments according to suggestions
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
### Setup environment
|
### Setup environment
|
||||||
|
|
||||||
1. Install Java `dnf install java-11-openjdk-devel` (And add an alias to your `.bashrc`)
|
1. Install Java 11 JDK (And add an alias to your `.bashrc`)
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
alias java11='/usr/lib/jvm/jre-11/bin/java'
|
alias java11='/usr/lib/jvm/jre-11/bin/java'
|
||||||
|
|||||||
@@ -75,6 +75,7 @@ compileTestKotlin {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove version number from jar name for deployment
|
||||||
bootJar {
|
bootJar {
|
||||||
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
|
archiveFileName = "${archiveBaseName.get()}.${archiveExtension.get()}"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -71,6 +71,7 @@ public class UserController {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Create salted hash for user's password
|
* Create salted hash for user's password
|
||||||
|
* Format: "$username + $password".toLowerMd5();
|
||||||
*
|
*
|
||||||
* @param username Unique username used as a salt
|
* @param username Unique username used as a salt
|
||||||
* @param password Password initial hash
|
* @param password Password initial hash
|
||||||
|
|||||||
Reference in New Issue
Block a user