[AB-120] adding jump link to modmail notification

This commit is contained in:
Sheldan
2021-02-14 19:56:05 +01:00
parent cb7e904d29
commit 876fbc01d9
3 changed files with 10 additions and 5 deletions

View File

@@ -8,6 +8,7 @@ import lombok.Getter;
import lombok.Setter;
import lombok.experimental.SuperBuilder;
import net.dv8tion.jda.api.entities.Member;
import net.dv8tion.jda.api.entities.TextChannel;
import java.util.List;
@@ -31,4 +32,8 @@ public class ModMailNotificationModel extends ServerContext {
* A list of roles which will be notified upon creation of the mod mail thread.
*/
private List<ModMailRole> roles;
/**
* The {@link TextChannel} in which the mod mail thread is handled
*/
private TextChannel channel;
}