[AB-197] moving templates from utility to their respective maven modules

This commit is contained in:
Sheldan
2021-03-12 17:53:46 +01:00
parent 1b645f58bd
commit cf03520397
190 changed files with 640 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>zip</id>
<includeBaseDirectory>false</includeBaseDirectory>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<outputDirectory>.</outputDirectory>
<directory>${project.basedir}/src/main/resources</directory>
</fileSet>
</fileSets>
</assembly>

View File

@@ -0,0 +1 @@
Reminds you in the given period of the given text.

View File

@@ -0,0 +1 @@
`remind 1h2m3s text` in order to be reminded in 1 hour 2 minutes and 3 seconds with the reason `text`

View File

@@ -0,0 +1,9 @@
Reminds you in the given duration of the given text.
The reminder will also include a link to the original message.
The syntax for duration is the following:
s - seconds
m - minutes
h - hours
d - days
They must be positive and do no spaces between for example `1h23m` is one hour and twenty three minutes.

View File

@@ -0,0 +1 @@
The duration in which you want to be reminded in. Uses the duration parsing.

View File

@@ -0,0 +1 @@
The text you wanted to be reminded with.

View File

@@ -0,0 +1 @@
You wanted to be reminded.

View File

@@ -0,0 +1 @@
Scheduled reminder ${id} to remind you of [this](${messageUrl})

View File

@@ -0,0 +1 @@
Displays all the currently active reminders with their due date and reminder note.

View File

@@ -0,0 +1 @@
Due on ${reminderTargetDate} with text ${reminderText}

View File

@@ -0,0 +1 @@
Cancels the given reminder.

View File

@@ -0,0 +1 @@
Cancels the given reminder to not be executed anymore.

View File

@@ -0,0 +1 @@
The ID of the reminder you want to cancel.

View File

@@ -0,0 +1 @@
Reminders

View File

@@ -0,0 +1 @@
Reminder ${reminderId} does not exist, was already reminded or does not belong to you.