mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-11 02:50:15 +08:00
Rename AncestorPermission to RootPermission
This commit is contained in:
parent
a6109bb301
commit
4822a8c5fe
@ -10,10 +10,10 @@
|
||||
package net.mamoe.mirai.console.command
|
||||
|
||||
import net.mamoe.mirai.console.command.CommandManager.INSTANCE.unregisterAllCommands
|
||||
import net.mamoe.mirai.console.permission.AncestorPermission
|
||||
import net.mamoe.mirai.console.permission.ExperimentalPermission
|
||||
import net.mamoe.mirai.console.permission.PermissionId
|
||||
import net.mamoe.mirai.console.permission.PermissionIdNamespace
|
||||
import net.mamoe.mirai.console.permission.RootPermission
|
||||
import net.mamoe.mirai.console.plugin.jvm.JvmPlugin
|
||||
|
||||
/**
|
||||
@ -41,7 +41,7 @@ public interface CommandOwner : PermissionIdNamespace {
|
||||
internal object ConsoleCommandOwner : CommandOwner {
|
||||
@ExperimentalPermission
|
||||
override val basePermission: PermissionId
|
||||
get() = AncestorPermission.id
|
||||
get() = RootPermission.id
|
||||
|
||||
@ExperimentalPermission
|
||||
override fun permissionId(id: String): PermissionId = PermissionId("console", id)
|
||||
|
@ -23,7 +23,7 @@ public abstract class AbstractConcurrentPermissionService<P : Permission> : Perm
|
||||
protected abstract fun createPermission(
|
||||
id: PermissionId,
|
||||
description: String,
|
||||
base: PermissionId = AncestorPermission.id
|
||||
base: PermissionId = RootPermission.id
|
||||
): P
|
||||
|
||||
override fun get(id: PermissionId): P? = permissions[id]
|
||||
|
@ -29,7 +29,7 @@ public interface Permission {
|
||||
* 所有权限的父权限.
|
||||
*/
|
||||
@ExperimentalPermission
|
||||
public object AncestorPermission :
|
||||
public object RootPermission :
|
||||
Permission {
|
||||
override val id: PermissionId = PermissionId("*", "*")
|
||||
override val description: String get() = "The parent of any permission"
|
||||
@ -51,5 +51,5 @@ public fun Permission.parentsWithSelfSequence(): Sequence<Permission> =
|
||||
public class PermissionImpl(
|
||||
override val id: PermissionId,
|
||||
override val description: String,
|
||||
override val parentId: PermissionId = AncestorPermission.id
|
||||
override val parentId: PermissionId = RootPermission.id
|
||||
) : Permission
|
@ -45,7 +45,7 @@ public interface PermissionService<P : Permission> {
|
||||
public fun register(
|
||||
id: PermissionId,
|
||||
description: String,
|
||||
base: PermissionId = AncestorPermission.id
|
||||
base: PermissionId = RootPermission.id
|
||||
): P
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
Reference in New Issue
Block a user