mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-05-04 04:56:30 +03:00
Add /listremind and /delremind (#82)
This PR closes #61. This PR adds the `/listremind` command and the `/delremind` command. The `/delremind` command requires an index to determine which reminder to delete. cc @mctaylors review embed design and feature experience --------- Signed-off-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
parent
cac3ee9bf7
commit
488a1eec0c
5 changed files with 146 additions and 0 deletions
18
src/Messages.Designer.cs
generated
18
src/Messages.Designer.cs
generated
|
@ -977,5 +977,23 @@ namespace Boyfriend {
|
|||
return ResourceManager.GetString("Previous", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
internal static string ReminderList {
|
||||
get {
|
||||
return ResourceManager.GetString("ReminderList", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
internal static string InvalidReminderIndex {
|
||||
get {
|
||||
return ResourceManager.GetString("InvalidReminderIndex", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
internal static string ReminderDeleted {
|
||||
get {
|
||||
return ResourceManager.GetString("ReminderDeleted", resourceCulture);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue