mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2025-02-19 05:11:35 +01:00
- Rename 'EmailShowCommand' -> 'ShowEmailCommand'
- Command detailed description should ends with '.'
This commit is contained in:
parent
71e4c59c20
commit
b10b67b22f
@ -28,8 +28,8 @@ import fr.xephi.authme.command.executable.changepassword.ChangePasswordCommand;
|
|||||||
import fr.xephi.authme.command.executable.email.AddEmailCommand;
|
import fr.xephi.authme.command.executable.email.AddEmailCommand;
|
||||||
import fr.xephi.authme.command.executable.email.ChangeEmailCommand;
|
import fr.xephi.authme.command.executable.email.ChangeEmailCommand;
|
||||||
import fr.xephi.authme.command.executable.email.EmailBaseCommand;
|
import fr.xephi.authme.command.executable.email.EmailBaseCommand;
|
||||||
import fr.xephi.authme.command.executable.email.EmailShowCommand;
|
|
||||||
import fr.xephi.authme.command.executable.email.RecoverEmailCommand;
|
import fr.xephi.authme.command.executable.email.RecoverEmailCommand;
|
||||||
|
import fr.xephi.authme.command.executable.email.ShowEmailCommand;
|
||||||
import fr.xephi.authme.command.executable.login.LoginCommand;
|
import fr.xephi.authme.command.executable.login.LoginCommand;
|
||||||
import fr.xephi.authme.command.executable.logout.LogoutCommand;
|
import fr.xephi.authme.command.executable.logout.LogoutCommand;
|
||||||
import fr.xephi.authme.command.executable.register.RegisterCommand;
|
import fr.xephi.authme.command.executable.register.RegisterCommand;
|
||||||
@ -359,8 +359,8 @@ public class CommandInitializer {
|
|||||||
.parent(EMAIL_BASE)
|
.parent(EMAIL_BASE)
|
||||||
.labels("show", "myemail")
|
.labels("show", "myemail")
|
||||||
.description("Show Email")
|
.description("Show Email")
|
||||||
.detailedDescription("Show your current email address")
|
.detailedDescription("Show your current email address.")
|
||||||
.executableCommand(EmailShowCommand.class)
|
.executableCommand(ShowEmailCommand.class)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
// Register the add command
|
// Register the add command
|
||||||
|
@ -15,7 +15,7 @@ import java.util.List;
|
|||||||
* Created on 17/10/2016.
|
* Created on 17/10/2016.
|
||||||
* Author: DNx
|
* Author: DNx
|
||||||
*/
|
*/
|
||||||
public class EmailShowCommand extends PlayerCommand {
|
public class ShowEmailCommand extends PlayerCommand {
|
||||||
|
|
||||||
@Inject
|
@Inject
|
||||||
private Management management;
|
private Management management;
|
Loading…
Reference in New Issue
Block a user