Ignore:
Timestamp:
Jun 17, 2024, 5:25:43 PM (5 months ago)
Author:
alloc
Message:

1.1.0.1 Release for V 1.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TFP-WebServer/WebServer/src/Commands/WebPermissionsCmd.cs

    r435 r487  
    66        [UsedImplicitly]
    77        public class WebPermissionsCmd : ConsoleCmdAbstract {
    8                 protected override string[] getCommands () {
     8                public override string[] getCommands () {
    99                        return new[] {"webpermission"};
    1010                }
    1111
    12                 protected override string getDescription () {
     12                public override string getDescription () {
    1313                        return "Manage web permission levels";
    1414                }
    1515
    16                 protected override string getHelp () {
     16                public override string getHelp () {
    1717                        return @"
    1818                                |Set/get permission levels required to access a given web functionality. Default
     
    8484                        if (permissionLevelString.EqualsCaseInsensitive (AdminWebModules.MethodLevelInheritKeyword)) {
    8585                                if (isGlobal) {
    86                                         SdtdConsole.Instance.Output ($"Permission level can not use the 'inherit' keyword with the 'global' method keyword.");
     86                                        SdtdConsole.Instance.Output ("Permission level can not use the 'inherit' keyword with the 'global' method keyword.");
    8787                                        return;
    8888                                }
     
    9797                        }
    9898
    99                         module.IsDefault = false;
    10099                        if (isGlobal) {
    101                                 module.LevelGlobal = level;
     100                                module = module.SetLevelGlobal (level);
    102101                        } else {
    103                                 module.LevelPerMethod [(int)method] = level;
     102                                module = module.SetLevelForMethod (method, level);
    104103                        }
    105104                       
Note: See TracChangeset for help on using the changeset viewer.