
io.quarkiverse.githubapp.command.airline.runtime.CommandPermissionConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-github-app-command-airline Show documentation
Show all versions of quarkus-github-app-command-airline Show documentation
Add comment-based commands to your GitHub App
package io.quarkiverse.githubapp.command.airline.runtime;
import org.kohsuke.github.GHPermissionType;
public class CommandPermissionConfig {
private final GHPermissionType permission;
public CommandPermissionConfig(GHPermissionType permission) {
this.permission = permission;
}
public GHPermissionType getPermission() {
return permission;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy