Skip to content

Commit

Permalink
[AB-xxx] typo change
Browse files Browse the repository at this point in the history
java doc update
removal of todo
  • Loading branch information
Sheldan committed May 30, 2024
1 parent 336c3d0 commit 388fead
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<property name="modmailModule" value="(SELECT id FROM module WHERE name = '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">
<column name="name" value="denyModmailAppeal"/>
<column name="module_id" valueComputed="${modmailModule}"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
* 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 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 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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ public class UserDisplay {
private String discriminator;
private String name;
private String avatarUrl;
// TODO add avatar, only available from user

public static UserDisplay fromUser(User user) {
return UserDisplay
Expand Down

0 comments on commit 388fead

Please sign in to comment.