mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-03-09 09:09:52 +00:00
[AB-xxx] typo change
java doc update removal of todo
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
<property name="modmailModule" value="(SELECT id FROM module WHERE name = 'modmail')"/>
|
<property name="modmailModule" value="(SELECT id FROM module WHERE name = 'modmail')"/>
|
||||||
<property name="modmailFeature" value="(SELECT id FROM feature WHERE key = 'modmail')"/>
|
<property name="modmailFeature" value="(SELECT id FROM feature WHERE key = 'modmail')"/>
|
||||||
|
|
||||||
<changeSet author="Sheldan" id="modmail_denyModmailAppeal_commands">
|
<changeSet author="Sheldan" id="modmail_denyModmailAppeal_command">
|
||||||
<insert tableName="command">
|
<insert tableName="command">
|
||||||
<column name="name" value="denyModmailAppeal"/>
|
<column name="name" value="denyModmailAppeal"/>
|
||||||
<column name="module_id" valueComputed="${modmailModule}"/>
|
<column name="module_id" valueComputed="${modmailModule}"/>
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ public interface ModMailThreadService {
|
|||||||
* in the appropriate {@link net.dv8tion.jda.api.entities.channel.concrete.Category} and calls the methods responsible for storing
|
* in the appropriate {@link net.dv8tion.jda.api.entities.channel.concrete.Category} and calls the methods responsible for storing
|
||||||
* the necessary data in the database, notifying the users and sending messages related to the creation of the {@link ModMailThread}
|
* the necessary data in the database, notifying the users and sending messages related to the creation of the {@link ModMailThread}
|
||||||
* @param user The {@link User} to create the mod mail thread for
|
* @param user The {@link User} to create the mod mail thread for
|
||||||
|
* @param guild The {@link Guild} in which the mod mail thread should be created in
|
||||||
* @param initialMessage The initial message sparking this mod mail thread, null in case it was created by a command
|
* @param initialMessage The initial message sparking this mod mail thread, null in case it was created by a command
|
||||||
* @param userInitiated Whether or not the mod mail thread was initiated by a user
|
* @param userInitiated Whether or not the mod mail thread was initiated by a user
|
||||||
* @param undoActions A list of {@link dev.sheldan.abstracto.core.models.UndoAction actions} to be undone in case the operation fails. This list will be filled in the method.
|
* @param undoActions A list of {@link dev.sheldan.abstracto.core.models.UndoAction actions} to be undone in case the operation fails. This list will be filled in the method.
|
||||||
|
|||||||
@@ -16,7 +16,6 @@ public class UserDisplay {
|
|||||||
private String discriminator;
|
private String discriminator;
|
||||||
private String name;
|
private String name;
|
||||||
private String avatarUrl;
|
private String avatarUrl;
|
||||||
// TODO add avatar, only available from user
|
|
||||||
|
|
||||||
public static UserDisplay fromUser(User user) {
|
public static UserDisplay fromUser(User user) {
|
||||||
return UserDisplay
|
return UserDisplay
|
||||||
|
|||||||
Reference in New Issue
Block a user