mirror of
https://github.com/Sheldan/abstracto-templates.git
synced 2026-03-06 16:26:31 +00:00
[AB-64] adding templates for voice channel context feature
This commit is contained in:
@@ -31,6 +31,7 @@
|
|||||||
<module>logging</module>
|
<module>logging</module>
|
||||||
<module>invite-filter</module>
|
<module>invite-filter</module>
|
||||||
<module>profanity-filter</module>
|
<module>profanity-filter</module>
|
||||||
|
<module>voice-channel-context</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
36
translations/voice-channel-context/pom.xml
Normal file
36
translations/voice-channel-context/pom.xml
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
<?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>
|
||||||
|
<artifactId>translations</artifactId>
|
||||||
|
<groupId>dev.sheldan.abstracto-templates.translations</groupId>
|
||||||
|
<version>1.2.15-SNAPSHOT</version>
|
||||||
|
</parent>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<artifactId>voice-channel-context</artifactId>
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<phase>package</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>single</goal>
|
||||||
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<finalName>voice-channel-context-translations-${project.version}</finalName>
|
||||||
|
<appendAssemblyId>false</appendAssemblyId>
|
||||||
|
<descriptors>
|
||||||
|
<descriptor>src/main/assembly/assembly.xml</descriptor>
|
||||||
|
</descriptors>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
</project>
|
||||||
@@ -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>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Creates a voice channel context
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
This command can be used to link a voice channel to a role. This means, that the role will be added to the members who join this voice channel.
|
||||||
|
The role can then be used to provide 'view channel' permission to another channel to be used as a context channel.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
The role to apply to members joining to the voice channel
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
The voice channel for which a voice channel context should be created. You can mention voice channels by typing '#!' and then continuing with the voice channel name.
|
||||||
|
The name or the channel ID is also a possibility.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Deletes a voice channel context
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
This command can be used to remove a voice channel context. So that the given voice channel does not have a role associated with it.
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
The voice channel for which a voice channel context should be removed. You can mention voice channels by typing '#!' and then continuing with the voice channel name.
|
||||||
|
The name or the channel ID is also a possibility.
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Voice channel context
|
||||||
Reference in New Issue
Block a user