Files
TorchPlugins/LightPerms.TorchCommands/Extensions.cs
2022-05-24 15:49:43 +07:00

11 lines
270 B
C#

using Torch.Commands;
namespace LightPerms.TorchCommands;
public static class Extensions
{
public static string GetPermissionString(this Command command)
{
return $"command.{string.Join(".", command.Path.Select(b => b.ToLowerInvariant()))}";
}
}