mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-10 18:40:15 +08:00
Rename BasePermission to AncestorPermission
This commit is contained in:
parent
39ef007370
commit
6429e400f1
@ -10,7 +10,7 @@
|
||||
package net.mamoe.mirai.console.command
|
||||
|
||||
import net.mamoe.mirai.console.command.CommandManager.INSTANCE.unregisterAllCommands
|
||||
import net.mamoe.mirai.console.permission.BasePermission
|
||||
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
|
||||
@ -40,7 +40,8 @@ public interface CommandOwner : PermissionIdNamespace {
|
||||
*/
|
||||
internal object ConsoleCommandOwner : CommandOwner {
|
||||
@ExperimentalPermission
|
||||
override val basePermission: PermissionId get() = BasePermission.id
|
||||
override val basePermission: PermissionId
|
||||
get() = AncestorPermission.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 = BasePermission.id
|
||||
base: PermissionId = AncestorPermission.id
|
||||
): P
|
||||
|
||||
override fun get(id: PermissionId): P? = permissions[id]
|
||||
|
@ -29,7 +29,7 @@ public interface Permission {
|
||||
* 所有权限的父权限.
|
||||
*/
|
||||
@ExperimentalPermission
|
||||
public object BasePermission :
|
||||
public object AncestorPermission :
|
||||
Permission {
|
||||
override val id: PermissionId = PermissionId("*", "*")
|
||||
override val description: String get() = "The parent of any permission"
|
||||
@ -52,5 +52,5 @@ public fun Permission.parentsWithSelfSequence(): Sequence<Permission> =
|
||||
public class PermissionImpl(
|
||||
override val id: PermissionId,
|
||||
override val description: String,
|
||||
override val parent: PermissionId = BasePermission.id
|
||||
override val parent: PermissionId = AncestorPermission.id
|
||||
) : Permission
|
@ -45,7 +45,7 @@ public interface PermissionService<P : Permission> {
|
||||
public fun register(
|
||||
id: PermissionId,
|
||||
description: String,
|
||||
base: PermissionId = BasePermission.id
|
||||
base: PermissionId = AncestorPermission.id
|
||||
): P
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
Reference in New Issue
Block a user