mirror of
https://github.com/Sheldan/abstracto.git
synced 2026-01-24 05:10:24 +00:00
added modmail with some simple features (chat between user and moderator), and initial server selection (currently allows all servers, and does not consider the modmail feature) added the initial commands, not all of them hold logic currently added some checks to not crash when a command has null configuration changed systemconfig to also have a long value, because double is not fit for all cases added locking mechanism, to effectively lock the whole table without using the ... proper locking mechanism (needs to be reviewed) changed interface in channel service to be a message channel instead of a textChannel changed starboard post to be a user in a server instead of only user
22 lines
739 B
XML
22 lines
739 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<groupId>dev.sheldan.abstracto</groupId>
|
|
<artifactId>abstracto-application</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>abstracto-modules</artifactId>
|
|
<packaging>pom</packaging>
|
|
<modules>
|
|
<module>moderation</module>
|
|
<module>utility</module>
|
|
<module>experience-tracking</module>
|
|
<module>modmail</module>
|
|
</modules>
|
|
|
|
|
|
</project> |