reworked the commandHandler
added Slash Commands
This commit is contained in:
parent
17dceda408
commit
b8feed971c
15 changed files with 599 additions and 214 deletions
|
@ -12,15 +12,33 @@
|
|||
public const string SIGN_OFF_BUTTON = "signOffButton";
|
||||
|
||||
public const string SIGN_UP_DROP_DOWN = "signUpDropDown";
|
||||
public const string SIGN_UP_EXTERNAL_DROP_DOWN = "signUpExternalDropDown";
|
||||
|
||||
public const string NAME_TEXT_BOX = "nameTextbox";
|
||||
public const string ACCOUNT_TEXT_BOX = "accountTextBox";
|
||||
public const string CREATE_ACCOUNT_MODAL = "createAccountModal";
|
||||
|
||||
public const string SIGN_UP_EXTERNAL_MODAL = "signUpExternalModal";
|
||||
}
|
||||
|
||||
public class SlashCommands
|
||||
{
|
||||
public const string FIRST_COMMAND = "first-command";
|
||||
public const string RAID = "raid";
|
||||
public const string SEND_MESSAGE_COMMAND = "send-message";
|
||||
public const string USER = "user";
|
||||
|
||||
public const string ADD_USER_COMMAND = "add";
|
||||
public const string REMOVE_USER_COMMAND = "remove";
|
||||
public const string ADD_EXTERNAL_USER_COMMAND = "add-external";
|
||||
public const string REMOVE_EXTERNAL_USER_COMMAND = "remove-external";
|
||||
|
||||
public class OptionNames
|
||||
{
|
||||
public const string USER = "user";
|
||||
public const string USER_NAME = "user-name";
|
||||
public const string MESSAGE = "message";
|
||||
public const string RAID_ID = "raid-id";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue