mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2025-02-13 18:31:38 +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.ChangeEmailCommand;
|
||||
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.ShowEmailCommand;
|
||||
import fr.xephi.authme.command.executable.login.LoginCommand;
|
||||
import fr.xephi.authme.command.executable.logout.LogoutCommand;
|
||||
import fr.xephi.authme.command.executable.register.RegisterCommand;
|
||||
@ -359,8 +359,8 @@ public class CommandInitializer {
|
||||
.parent(EMAIL_BASE)
|
||||
.labels("show", "myemail")
|
||||
.description("Show Email")
|
||||
.detailedDescription("Show your current email address")
|
||||
.executableCommand(EmailShowCommand.class)
|
||||
.detailedDescription("Show your current email address.")
|
||||
.executableCommand(ShowEmailCommand.class)
|
||||
.build();
|
||||
|
||||
// Register the add command
|
||||
|
@ -15,7 +15,7 @@ import java.util.List;
|
||||
* Created on 17/10/2016.
|
||||
* Author: DNx
|
||||
*/
|
||||
public class EmailShowCommand extends PlayerCommand {
|
||||
public class ShowEmailCommand extends PlayerCommand {
|
||||
|
||||
@Inject
|
||||
private Management management;
|
Loading…
Reference in New Issue
Block a user