1
0
Fork 1
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:
Octol1ttle 2023-08-12 18:54:51 +05:00 committed by GitHub
parent cac3ee9bf7
commit 488a1eec0c
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 146 additions and 0 deletions

View file

@ -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);
}
}
}
}